38 lines
1.1 KiB
Python
38 lines
1.1 KiB
Python
"""add location table
|
|
|
|
Revision ID: 0b117fab4208
|
|
Revises: fe56fa70289e
|
|
Create Date: 2026-03-12 11:07:24.856505
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
import sqlmodel.sql.sqltypes
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '0b117fab4208'
|
|
down_revision = 'fe56fa70289e'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.create_table('location',
|
|
sa.Column('title', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False),
|
|
sa.Column('description', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=True),
|
|
sa.Column('id', sa.Uuid(), nullable=False),
|
|
sa.Column('created_at', sa.DateTime(timezone=True), nullable=True),
|
|
sa.Column('owner_id', sa.Uuid(), nullable=False),
|
|
sa.ForeignKeyConstraint(['owner_id'], ['user.id'], ondelete='CASCADE'),
|
|
sa.PrimaryKeyConstraint('id')
|
|
)
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.drop_table('location')
|
|
# ### end Alembic commands ###
|