code.vegaprotocol.io/vega@v0.79.0/datanode/sqlstore/migrations/0082_teams_allow_list.sql (about) 1 -- +goose Up 2 ALTER TABLE teams 3 ADD COLUMN IF NOT EXISTS allow_list JSONB; 4 5 -- +goose Down 6 7 ALTER TABLE teams 8 DROP COLUMN IF EXISTS allow_list;