feat: migration 0009 — add reminded_at to weekly_run

This commit is contained in:
2026-05-08 06:48:36 -07:00
parent 61a5578b71
commit 63ad306a61
2 changed files with 25 additions and 0 deletions
@@ -0,0 +1,24 @@
"""Phase 6: add reminded_at to weekly_run
Revision ID: 0009
Revises: 0008
Create Date: 2026-05-07
"""
from alembic import op
import sqlalchemy as sa
revision = "0009"
down_revision = "0008"
branch_labels = None
depends_on = None
def upgrade() -> None:
op.add_column(
"weekly_run",
sa.Column("reminded_at", sa.DateTime(timezone=True), nullable=True),
)
def downgrade() -> None:
op.drop_column("weekly_run", "reminded_at")