"""create items table Revision ID: f2f2f2f2f2f2 Revises: Create Date: 2023-10-29 00:00:00.000000 """ from alembic import op import sqlalchemy as sa # revision identifiers, used by Alembic. revision = 'f2f2f2f2f2f2' down_revision = None branch_labels = None depends_on = None def upgrade() -> None: # ### commands auto generated by Alembic - please adjust! ### op.create_table('item', sa.Column('id', sa.Integer(), nullable=False), sa.Column('name', sa.String(length=100), nullable=False), sa.Column('description', sa.Text(), nullable=True), sa.Column('price', sa.Integer(), nullable=False), sa.Column('is_active', sa.Boolean(), nullable=True), sa.Column('created_at', sa.DateTime(), server_default=sa.text('(CURRENT_TIMESTAMP)'), nullable=True), sa.Column('updated_at', sa.DateTime(), server_default=sa.text('(CURRENT_TIMESTAMP)'), nullable=True), sa.PrimaryKeyConstraint('id') ) op.create_index(op.f('ix_item_id'), 'item', ['id'], unique=False) op.create_index(op.f('ix_item_name'), 'item', ['name'], unique=False) # ### end Alembic commands ### def downgrade() -> None: # ### commands auto generated by Alembic - please adjust! ### op.drop_index(op.f('ix_item_name'), table_name='item') op.drop_index(op.f('ix_item_id'), table_name='item') op.drop_table('item') # ### end Alembic commands ###