github.com/navikt/knorten@v0.0.0-20240419132333-1333f46ed8b6/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;