mirror of
https://github.com/Sheldan/Sissi.git
synced 2026-01-23 12:05:00 +00:00
adding migration script for legacy quotes changing docker-compose file to use different container names
18 lines
284 B
Python
18 lines
284 B
Python
|
|
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
|