- `捷径`新增消息中心功能 - 内建支持CookieCloud本地化服务器,Cookie数据加密后保存在用户配置目录中,可在`设定`-`站点`中选择开启 - 优化了推荐详情页面,豆瓣推荐详情直接展示豆瓣数据源 - 修复了`蜜柑`无法搜索的问题
32 lines
732 B
Python
32 lines
732 B
Python
"""1_0_14
|
|
|
|
Revision ID: f94cd1217fd7
|
|
Revises: 127a25fdf0e8
|
|
Create Date: 2024-03-06 19:19:33.053186
|
|
|
|
"""
|
|
import contextlib
|
|
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = 'f94cd1217fd7'
|
|
down_revision = '127a25fdf0e8'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade() -> None:
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
with contextlib.suppress(Exception):
|
|
with op.batch_alter_table("subscribe") as batch_op:
|
|
batch_op.add_column(sa.Column('manual_total_episode', sa.Integer, nullable=True))
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade() -> None:
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
pass
|