Archived
1
0
Fork 0

forget to del

This commit is contained in:
Light Beacon 2023-01-26 21:30:34 +08:00
parent ca5f018f14
commit 9d9eb33762

View file

@ -26,7 +26,6 @@ class WikiInfo(Base):
apiLink = Column(String(512), primary_key=True)
siteInfo = Column(LONGTEXT if session.bind.dialect.name == 'mysql' else Text)
timestamp = Column(TIMESTAMP, default=text('CURRENT_TIMESTAMP'))
extend_existing = True
class WikiAllowList(Base):
@ -34,7 +33,6 @@ class WikiAllowList(Base):
__table_args__ = {'extend_existing': True}
apiLink = Column(String(512), primary_key=True)
operator = Column(String(512))
extend_existing=True
class WikiBlockList(Base):
@ -42,7 +40,6 @@ class WikiBlockList(Base):
__table_args__ = {'extend_existing': True}
apiLink = Column(String(512), primary_key=True)
operator = Column(String(512))
extend_existing=True
Session.create()