code reformat

This commit is contained in:
2023-10-30 23:30:16 +07:00
parent ce88bb6dc8
commit 57f401ee5f
8 changed files with 35 additions and 29 deletions
+2 -1
View File
@@ -9,6 +9,7 @@ class Base(DeclarativeBase):
class UsersTokens(Base):
__tablename__ = "users_tokens"
id = Column("id", BigInteger, Identity(start=1, increment=1, minvalue=1, cycle=False, cache=1), nullable=False, primary_key=True)
id = Column("id", BigInteger, Identity(start=1, increment=1, minvalue=1, cycle=False, cache=1), nullable=False,
primary_key=True)
vkid = Column("vkid", BigInteger, nullable=False)
token = Column("token", Text, nullable=False)