mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-03-25 22:41:06 +08:00
30 lines
629 B
Python
30 lines
629 B
Python
"""2.1.2
|
|
|
|
Revision ID: 610bb05ddeef
|
|
Revises: 279a949d81b6
|
|
Create Date: 2025-02-24 07:52:00.042837
|
|
|
|
"""
|
|
import contextlib
|
|
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
from sqlalchemy.dialects import sqlite
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '610bb05ddeef'
|
|
down_revision = '279a949d81b6'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade() -> None:
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
with contextlib.suppress(Exception):
|
|
op.add_column('workflow', sa.Column('flows', sa.JSON(), nullable=True))
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade() -> None:
|
|
pass
|