mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-02-24 10:57:23 -08:00
52 lines
1.6 KiB
Python
52 lines
1.6 KiB
Python
"""add recipe_timeline_events table
|
|
|
|
Revision ID: 2ea7a807915c
|
|
Revises: 44e8d670719d
|
|
Create Date: 2022-09-27 14:53:14.111054
|
|
|
|
"""
|
|
|
|
import sqlalchemy as sa
|
|
|
|
import mealie.db.migration_types
|
|
from alembic import op
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = "2ea7a807915c"
|
|
down_revision = "44e8d670719d"
|
|
branch_labels: str | tuple[str, ...] | None = None
|
|
depends_on: str | tuple[str, ...] | None = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.create_table(
|
|
"recipe_timeline_events",
|
|
sa.Column("created_at", sa.DateTime(), nullable=True),
|
|
sa.Column("update_at", sa.DateTime(), nullable=True),
|
|
sa.Column("id", mealie.db.migration_types.GUID(), nullable=False),
|
|
sa.Column("recipe_id", mealie.db.migration_types.GUID(), nullable=False),
|
|
sa.Column("user_id", mealie.db.migration_types.GUID(), nullable=False),
|
|
sa.Column("subject", sa.String(), nullable=False),
|
|
sa.Column("message", sa.String(), nullable=True),
|
|
sa.Column("event_type", sa.String(), nullable=True),
|
|
sa.Column("image", sa.String(), nullable=True),
|
|
sa.Column("timestamp", sa.DateTime(), nullable=True),
|
|
sa.ForeignKeyConstraint(
|
|
["recipe_id"],
|
|
["recipes.id"],
|
|
),
|
|
sa.ForeignKeyConstraint(
|
|
["user_id"],
|
|
["users.id"],
|
|
),
|
|
sa.PrimaryKeyConstraint("id"),
|
|
)
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.drop_table("recipe_timeline_events")
|
|
# ### end Alembic commands ###
|