Add missing migration

This commit is contained in:
Christopher Baines 2020-02-03 22:57:57 +00:00
parent 19630014a3
commit a3d84b1aec
3 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,21 @@
-- Deploy guix-data-service:system_test_tables to pg
BEGIN;
CREATE TABLE system_tests (
id integer NOT NULL GENERATED ALWAYS AS IDENTITY,
name varchar NOT NULL,
description varchar NOT NULL,
location_id integer NOT NULL REFERENCES locations (id),
PRIMARY KEY (name, description, location_id),
UNIQUE (id)
);
CREATE TABLE guix_revision_system_test_derivations (
guix_revision_id integer NOT NULL REFERENCES guix_revisions (id),
system_test_id integer NOT NULL REFERENCES system_tests (id),
derivation_id integer NOT NULL REFERENCES derivations (id),
PRIMARY KEY (guix_revision_id, system_test_id, derivation_id)
);
COMMIT;

View file

@ -0,0 +1,8 @@
-- Revert guix-data-service:system_test_tables from pg
BEGIN;
DROP TABLE guix_revision_system_test_derivations;
DROP TABLE system_tests;
COMMIT;

View file

@ -0,0 +1,7 @@
-- Verify guix-data-service:system_test_tables on pg
BEGIN;
-- XXX Add verifications here.
ROLLBACK;