From c353e8d65031f2d3d30ce12db296ee7e667a7085 Mon Sep 17 00:00:00 2001 From: knst-kotov Date: Sun, 31 Oct 2021 13:58:21 +0300 Subject: [PATCH] typo fix --- orm/topic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orm/topic.py b/orm/topic.py index f10a1195..719c3732 100644 --- a/orm/topic.py +++ b/orm/topic.py @@ -12,7 +12,7 @@ Connection = Table('topic_connections', ) class TopicSubscription(Base): - __tablename__ = "topic_subscrptions" + __tablename__ = "topic_subscription" id = None topic = Column(ForeignKey('topic.slug'), primary_key = True)