github.com/nais/knorten@v0.0.0-20240104110906-55926958e361/pkg/database/migrations/006_add_pending_upgrade.sql (about)

     1  -- +goose Up
     2  ALTER TABLE teams ADD COLUMN "pending_jupyter_upgrade" BOOLEAN NOT NULL DEFAULT false;
     3  ALTER TABLE teams ADD COLUMN "pending_airflow_upgrade" BOOLEAN NOT NULL DEFAULT false;
     4  
     5  -- +goose Down
     6  ALTER TABLE teams DROP COLUMN "pending_jupyter_upgrade";
     7  ALTER TABLE teams DROP COLUMN "pending_airflow_upgrade";