modified: app.py new file: migrations/versions/d04950c5a624_add_activitystate_table2.py new file: migrations/versions/d3631b8bb652_add_activitystate_table.py
41 lines
1.1 KiB
Python
41 lines
1.1 KiB
Python
"""Add ActivityState table
|
|
|
|
Revision ID: d3631b8bb652
|
|
Revises: 190d5ef26e20
|
|
Create Date: 2024-07-27 09:33:52.544550
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = "d3631b8bb652"
|
|
down_revision = "190d5ef26e20"
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.create_table(
|
|
"activity_state",
|
|
sa.Column("id", sa.Integer(), nullable=False),
|
|
sa.Column("room_id", sa.Integer(), nullable=False),
|
|
sa.Column("section_id", sa.String(length=128), nullable=False),
|
|
sa.Column("step_id", sa.String(length=128), nullable=False),
|
|
sa.Column("attempts", sa.Integer(), nullable=True),
|
|
sa.Column("max_attempts", sa.Integer(), nullable=True),
|
|
sa.ForeignKeyConstraint(
|
|
["room_id"],
|
|
["room.id"],
|
|
),
|
|
sa.PrimaryKeyConstraint("id"),
|
|
)
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.drop_table("activity_state")
|
|
# ### end Alembic commands ###
|