-- +goose Up ALTER TABLE sources ADD COLUMN alias TEXT NOT NULL DEFAULT ''; -- Collections no longer have filters; they have a rename toggle instead. ALTER TABLE collections ADD COLUMN rename_enabled INTEGER NOT NULL DEFAULT 0; -- +goose Down -- SQLite does not support DROP COLUMN before 3.35; these columns are harmless -- if left in place. For a clean rollback, recreate the tables without them.