diff --git a/backend/scripts/seed_test_users.py b/backend/scripts/seed_test_users.py index 8526fea1..715bba8d 100644 --- a/backend/scripts/seed_test_users.py +++ b/backend/scripts/seed_test_users.py @@ -161,8 +161,8 @@ async def main() -> None: if cfg["plan"] is not None: await conn.execute( text(""" - INSERT INTO subscriptions (id, account_id, plan, status, created_at, updated_at) - VALUES (:id, :aid, :plan, 'active', :now, :now) + INSERT INTO subscriptions (id, account_id, plan, status, cancel_at_period_end, created_at, updated_at) + VALUES (:id, :aid, :plan, 'active', false, :now, :now) """), {"id": uuid.uuid4(), "aid": account_id, "plan": cfg["plan"], "now": now}, )