[RAB-2] adding code to retrieve legacy quotes

adding migration script for legacy quotes
changing docker-compose file to use different container names
This commit is contained in:
Sheldan
2022-05-15 16:13:48 +02:00
parent da6c4a5b23
commit 199ca18cac
80 changed files with 3038 additions and 28 deletions

View File

@@ -0,0 +1,17 @@
class LegacyQuoteAttachment:
message_id = 0
file_name = ''
url = ''
is_image: bool = False
class LegacyQuote:
id = 0
channel_id = 0
author_id = 0
adder_id = 0
creation_time_stamp = None
content = ''
message_id = 0
attachments = None