From 63ebf3af2d5b237932d0d69a6240c6f7ddfb1d02 Mon Sep 17 00:00:00 2001 From: Untone Date: Tue, 15 Oct 2024 19:50:17 +0300 Subject: [PATCH] create-all-tables-fix --- main.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/main.py b/main.py index b766f040..d2c95354 100644 --- a/main.py +++ b/main.py @@ -46,20 +46,22 @@ async def start(): def create_all_tables(): for model in [ + # user.User, author.Author, - author.AuthorRating, author.AuthorFollower, - notification.Notification, - notification.NotificationSeen, shout.Shout, shout.ShoutAuthor, - shout.ShoutTopic, - shout.ShoutCommunity, topic.Topic, topic.TopicFollower, + shout.ShoutTopic, reaction.Reaction, + shout.ShoutReactionsFollower, + author.AuthorRating, community.Community, + shout.ShoutCommunity, community.CommunityFollower, + notification.Notification, + notification.NotificationSeen, # collection.Collection, collection.ShoutCollection, # invite.Invite ]: