mirror of
https://github.com/dizedev/vk_lp.git
synced 2026-09-17 03:58:56 +00:00
code reformat
This commit is contained in:
+2
-1
@@ -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)
|
||||
|
||||
+2
-1
@@ -1,5 +1,6 @@
|
||||
from loguru import logger
|
||||
from sqlalchemy import select, update
|
||||
from sqlalchemy import select
|
||||
|
||||
import db
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user