views from ackee

This commit is contained in:
2022-11-15 12:25:04 +03:00
parent 9942fc2558
commit efc3531c33
12 changed files with 126 additions and 196 deletions

View File

@@ -6,7 +6,6 @@ from orm.reaction import Reaction
from orm.shout import Shout
from orm.topic import Topic, TopicFollower
from orm.user import User, UserRating
from orm.viewed import ViewedByDay
__all__ = [
"User",
@@ -19,8 +18,7 @@ __all__ = [
"TopicFollower",
"Notification",
"Reaction",
"UserRating",
"ViewedByDay"
"UserRating"
]
Base.metadata.create_all(engine)