42 lines
1.2 KiB
Python
42 lines
1.2 KiB
Python
"""initial migration
|
|
|
|
Revision ID: 1a1c3d5e7f9b
|
|
Revises:
|
|
Create Date: 2023-10-31 12:00:00.000000
|
|
|
|
"""
|
|
|
|
import sqlalchemy as sa
|
|
from alembic import op
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = "1a1c3d5e7f9b"
|
|
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("title", sa.String(length=255), nullable=False),
|
|
sa.Column("description", sa.Text(), nullable=True),
|
|
sa.Column("is_active", sa.Boolean(), nullable=True),
|
|
sa.Column("created_at", sa.DateTime(), nullable=True),
|
|
sa.Column("updated_at", sa.DateTime(), nullable=True),
|
|
sa.PrimaryKeyConstraint("id"),
|
|
)
|
|
op.create_index(op.f("ix_item_id"), "item", ["id"], unique=False)
|
|
op.create_index(op.f("ix_item_title"), "item", ["title"], unique=False)
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade() -> None:
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.drop_index(op.f("ix_item_title"), table_name="item")
|
|
op.drop_index(op.f("ix_item_id"), table_name="item")
|
|
op.drop_table("item")
|
|
# ### end Alembic commands ###
|