feat RSS增加过滤规则开关

This commit is contained in:
jxxghp
2023-08-12 18:34:01 +08:00
parent bfc72be90d
commit c7a5c5f55e
3 changed files with 6 additions and 0 deletions

View File

@ -21,6 +21,8 @@ def upgrade() -> None:
try:
with op.batch_alter_table("transferhistory") as batch_op:
batch_op.add_column(sa.Column('files', sa.String, nullable=True))
with op.batch_alter_table("rss") as batch_op:
batch_op.add_column(sa.Column('filter', sa.Integer, nullable=True))
except Exception as e:
pass
# ### end Alembic commands ###