44 lines
1.3 KiB
Python
44 lines
1.3 KiB
Python
|
"""posts table
|
||
|
|
||
|
Revision ID: 938ae2fee021
|
||
|
Revises: e42cf202d424
|
||
|
Create Date: 2024-08-01 06:11:07.414657
|
||
|
|
||
|
"""
|
||
|
from alembic import op
|
||
|
import sqlalchemy as sa
|
||
|
|
||
|
|
||
|
# revision identifiers, used by Alembic.
|
||
|
revision = '938ae2fee021'
|
||
|
down_revision = 'e42cf202d424'
|
||
|
branch_labels = None
|
||
|
depends_on = None
|
||
|
|
||
|
|
||
|
def upgrade():
|
||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
op.create_table('post',
|
||
|
sa.Column('id', sa.Integer(), nullable=False),
|
||
|
sa.Column('body', sa.String(length=140), nullable=False),
|
||
|
sa.Column('timestamp', sa.DateTime(), nullable=False),
|
||
|
sa.Column('user_id', sa.Integer(), nullable=False),
|
||
|
sa.ForeignKeyConstraint(['user_id'], ['user.id'], ),
|
||
|
sa.PrimaryKeyConstraint('id')
|
||
|
)
|
||
|
with op.batch_alter_table('post', schema=None) as batch_op:
|
||
|
batch_op.create_index(batch_op.f('ix_post_timestamp'), ['timestamp'], unique=False)
|
||
|
batch_op.create_index(batch_op.f('ix_post_user_id'), ['user_id'], unique=False)
|
||
|
|
||
|
# ### end Alembic commands ###
|
||
|
|
||
|
|
||
|
def downgrade():
|
||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
with op.batch_alter_table('post', schema=None) as batch_op:
|
||
|
batch_op.drop_index(batch_op.f('ix_post_user_id'))
|
||
|
batch_op.drop_index(batch_op.f('ix_post_timestamp'))
|
||
|
|
||
|
op.drop_table('post')
|
||
|
# ### end Alembic commands ###
|