github.com/nais/knorten@v0.0.0-20240104110906-55926958e361/pkg/database/migrations/017_remove_pending_flags.sql (about) 1 -- +goose Up 2 ALTER TABLE teams DROP COLUMN "pending_jupyter_upgrade"; 3 ALTER TABLE teams DROP COLUMN "pending_airflow_upgrade"; 4 5 -- +goose Down 6 ALTER TABLE teams ADD COLUMN "pending_jupyter_upgrade" BOOLEAN NOT NULL DEFAULT false; 7 ALTER TABLE teams ADD COLUMN "pending_airflow_upgrade" BOOLEAN NOT NULL DEFAULT false;