The is_paused column was missing from migration 0043, causing a production error: "SqliteError: no such column 'is_paused'" The other pause columns (paused_at, paused_by, paused_reason) were added manually during development but is_paused was overlooked. This commit: - Reverts 0043 to a no-op (those columns already exist) - Adds 0044 to add only the missing is_paused column 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
7 lines
295 B
SQL
7 lines
295 B
SQL
-- Custom SQL migration file, put your code below! --
|
|
-- The columns paused_at, paused_by, paused_reason were added manually during development.
|
|
-- This migration was kept for consistency but those columns already exist.
|
|
-- Note: is_paused was missing and is added in migration 0044.
|
|
|
|
SELECT 1;
|