8 lines
205 B
SQL
8 lines
205 B
SQL
-- +mixmaker Up
|
|
ALTER TABLE players
|
|
ADD COLUMN IF NOT EXISTS avoided_player_ids jsonb NOT NULL DEFAULT '[]'::jsonb;
|
|
|
|
-- +mixmaker Down
|
|
ALTER TABLE players
|
|
DROP COLUMN IF EXISTS avoided_player_ids;
|