Add migration for State
This commit is contained in:
parent
02c2cfd247
commit
34a6d15856
33
alembic/versions/20250326_130533_1ace3707_create_state.py
Normal file
33
alembic/versions/20250326_130533_1ace3707_create_state.py
Normal file
@ -0,0 +1,33 @@
|
||||
"""create states table
|
||||
|
||||
Revision ID: b2c3d4e5f6g7
|
||||
Revises:
|
||||
Create Date: 2023-12-21 10:00:00.000000
|
||||
"""
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
from sqlalchemy.sql import func
|
||||
import uuid
|
||||
|
||||
# revision identifiers
|
||||
revision = 'b2c3d4e5f6g7'
|
||||
down_revision = None
|
||||
branch_labels = None
|
||||
depends_on = None
|
||||
|
||||
def upgrade():
|
||||
op.create_table(
|
||||
'states',
|
||||
sa.Column('id', sa.String(), primary_key=True, default=lambda: str(uuid.uuid4())),
|
||||
sa.Column('name', sa.String(), nullable=False, index=True, unique=True),
|
||||
sa.Column('country_code', sa.String(2)),
|
||||
sa.Column('created_at', sa.DateTime(), server_default=sa.func.now()),
|
||||
sa.Column('updated_at', sa.DateTime(), server_default=sa.func.now(), onupdate=sa.func.now()),
|
||||
sa.PrimaryKeyConstraint('id')
|
||||
)
|
||||
|
||||
op.create_index('ix_states_name', 'states', ['name'], unique=True)
|
||||
|
||||
def downgrade():
|
||||
op.drop_index('ix_states_name', 'states')
|
||||
op.drop_table('states')
|
Loading…
x
Reference in New Issue
Block a user