19 lines
443 B
PL/PgSQL
19 lines
443 B
PL/PgSQL
-- Convert schema '/home/sergio/LasTres/script/../dbicdh/_source/deploy/5/001-auto.yml' to '/home/sergio/LasTres/script/../dbicdh/_source/deploy/6/001-auto.yml':;
|
|
|
|
;
|
|
BEGIN;
|
|
|
|
;
|
|
ALTER TABLE inventory_items ADD CONSTRAINT inventory_items_unique_item UNIQUE (inventory, identifier);
|
|
|
|
;
|
|
ALTER TABLE teams ADD COLUMN is_exploring boolean DEFAULT false NOT NULL;
|
|
|
|
;
|
|
ALTER TABLE teams ADD COLUMN explore_frame integer DEFAULT 0 NOT NULL;
|
|
|
|
;
|
|
|
|
COMMIT;
|
|
|