1234567891011121314151617181920212223242526272829303132 |
- """empty message
- Revision ID: 020773f0f9a1
- Revises: d11bbd8ae6d8
- Create Date: 2024-05-27 15:22:45.044762
- """
- from alembic import op
- import sqlalchemy as sa
- # revision identifiers, used by Alembic.
- revision = '020773f0f9a1'
- down_revision = 'd11bbd8ae6d8'
- branch_labels = None
- depends_on = None
- def upgrade():
- # ### commands auto generated by Alembic - please adjust! ###
- with op.batch_alter_table('player', schema=None) as batch_op:
- batch_op.add_column(sa.Column('character_card', sa.Integer(), nullable=True))
- # ### end Alembic commands ###
- def downgrade():
- # ### commands auto generated by Alembic - please adjust! ###
- with op.batch_alter_table('player', schema=None) as batch_op:
- batch_op.drop_column('character_card')
- # ### end Alembic commands ###
|