fix(migrations): make air_timezone column add idempotent

Use ADD COLUMN IF NOT EXISTS so re-running 162 on a database that already has
the column is a no-op.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
Quick
2026-05-28 17:11:11 -04:00
co-authored by Claude Opus 4.7
parent dfa0f6861f
commit 731cdd35fc
@@ -1 +1 @@
ALTER TABLE media_items ADD COLUMN air_timezone text;
ALTER TABLE media_items ADD COLUMN IF NOT EXISTS air_timezone text;