File size: 1,278 Bytes
a8eb386 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
"""add Predict table
Revision ID: a4ba6502ed21
Revises: e48ebc1ff51c
Create Date: 2021-03-09 18:57:38.804686
"""
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision = 'a4ba6502ed21'
down_revision = 'e48ebc1ff51c'
branch_labels = None
depends_on = None
def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.create_table('predict',
sa.Column('id', sa.Integer(), nullable=False),
sa.Column('img_name', sa.String(length=64), nullable=True),
sa.Column('img_path', sa.String(length=128), nullable=True),
sa.Column('size', sa.String(length=20), nullable=True),
sa.Column('predict_time', sa.DateTime(), nullable=True),
sa.Column('predict_result', sa.String(length=64), 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_predict_img_name'), 'predict', ['img_name'], unique=True)
# ### end Alembic commands ###
def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.drop_index(op.f('ix_predict_img_name'), table_name='predict')
op.drop_table('predict')
# ### end Alembic commands ###
|