Skip to content

Commit

Permalink
mig
Browse files Browse the repository at this point in the history
  • Loading branch information
parfenovma committed Aug 28, 2024
1 parent 8ec9cf8 commit 9b21d58
Showing 1 changed file with 26 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
"""fix_diff_for_old_timetable
Revision ID: 0bf7c70b7034
Revises: 009029ff68e2
Create Date: 2024-08-28 16:53:06.541063
"""

from alembic import op
import sqlalchemy as sa
import os
from sqlalchemy.dialects import postgresql

# revision identifiers, used by Alembic.
revision = '0bf7c70b7034'
down_revision = '009029ff68e2'
branch_labels = None
depends_on = None


def upgrade():
op.add_column('diff', sa.Column('action', sa.String(), nullable=True), schema='STG_RASPHYSMSU')


def downgrade():
op.drop_column('diff', 'action', schema='STG_RASPHYSMSU')

0 comments on commit 9b21d58

Please sign in to comment.