Files
Sissi/tools/quotes-migration/dto.py
Sheldan 199ca18cac [RAB-2] adding code to retrieve legacy quotes
adding migration script for legacy quotes
changing docker-compose file to use different container names
2022-05-15 16:13:48 +02:00

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