38 lines
1.0 KiB
Python
38 lines
1.0 KiB
Python
|
"""posts table
|
||
|
|
||
|
Revision ID: 780739b227a7
|
||
|
Revises: e517276bb1c2
|
||
|
Create Date: 2017-09-11 12:23:25.496587
|
||
|
|
||
|
"""
|
||
|
from alembic import op
|
||
|
import sqlalchemy as sa
|
||
|
|
||
|
|
||
|
# revision identifiers, used by Alembic.
|
||
|
revision = '780739b227a7'
|
||
|
down_revision = 'e517276bb1c2'
|
||
|
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=True),
|
||
|
sa.Column('timestamp', sa.DateTime(), nullable=True),
|
||
|
sa.Column('user_id', sa.Integer(), nullable=True),
|
||
|
sa.ForeignKeyConstraint(['user_id'], ['user.id'], ),
|
||
|
sa.PrimaryKeyConstraint('id')
|
||
|
)
|
||
|
op.create_index(op.f('ix_post_timestamp'), 'post', ['timestamp'], unique=False)
|
||
|
# ### end Alembic commands ###
|
||
|
|
||
|
|
||
|
def downgrade():
|
||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
op.drop_index(op.f('ix_post_timestamp'), table_name='post')
|
||
|
op.drop_table('post')
|
||
|
# ### end Alembic commands ###
|