From f553a7490d215edf0d093bf4b5eee6c23440e916 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Mon, 5 Aug 2019 20:02:06 +0100 Subject: Change the git_branches table primary key To allow for having branches in multiple git repositories. --- sqitch/deploy/change_git_branches_primary_key.sql | 9 +++++++++ sqitch/revert/change_git_branches_primary_key.sql | 9 +++++++++ sqitch/sqitch.plan | 1 + sqitch/verify/change_git_branches_primary_key.sql | 7 +++++++ 4 files changed, 26 insertions(+) create mode 100644 sqitch/deploy/change_git_branches_primary_key.sql create mode 100644 sqitch/revert/change_git_branches_primary_key.sql create mode 100644 sqitch/verify/change_git_branches_primary_key.sql diff --git a/sqitch/deploy/change_git_branches_primary_key.sql b/sqitch/deploy/change_git_branches_primary_key.sql new file mode 100644 index 0000000..af0ff80 --- /dev/null +++ b/sqitch/deploy/change_git_branches_primary_key.sql @@ -0,0 +1,9 @@ +-- Deploy guix-data-service:change_git_branches_primary_key to pg + +BEGIN; + +ALTER TABLE git_branches DROP CONSTRAINT name_commit; + +ALTER TABLE git_branches ADD PRIMARY KEY (name, commit, git_repository_id); + +COMMIT; diff --git a/sqitch/revert/change_git_branches_primary_key.sql b/sqitch/revert/change_git_branches_primary_key.sql new file mode 100644 index 0000000..9d548c3 --- /dev/null +++ b/sqitch/revert/change_git_branches_primary_key.sql @@ -0,0 +1,9 @@ +-- Revert guix-data-service:change_git_branches_primary_key from pg + +BEGIN; + +ALTER TABLE git_branches DROP CONSTRAINT git_branches_pkey; + +ALTER TABLE git_branches ADD PRIMARY KEY (name, commit); + +COMMIT; diff --git a/sqitch/sqitch.plan b/sqitch/sqitch.plan index bd513cc..e78dbac 100644 --- a/sqitch/sqitch.plan +++ b/sqitch/sqitch.plan @@ -16,3 +16,4 @@ load_new_guix_revision_job_events 2019-06-02T15:44:41Z Christopher Baines # Add load_new_guix_revision_job_logs change_load_new_guix_revision_job_logs_contents_to_be_nullable 2019-07-07T20:10:54Z Christopher Baines # Change the contents field in the load_new_guix_revision_job_logs table\nto be nullable.\n\nwith '#' will # be ignored, and an empty message aborts the add. #\nChange to add: # #\nchange_load_new_guix_revision_job_logs_contents_to_be_nullable #\nsqitch/deploy/change_load_new_guix_revision_job_logs_contents_to_be_nullable.sql\nsqitch/revert/change_load_new_guix_revision_job_logs_contents_to_be_nullable.sql\nsqitch/verify/change_load_new_guix_revision_job_logs_contents_to_be_nullable.sql fix_duplicated_licenses 2019-07-30T05:48:17Z Christopher Baines # Fix duplicated licenses, and add constraints +change_git_branches_primary_key 2019-08-05T18:57:41Z Christopher Baines # Change the git_branches primary key to include the git_repository_id,\nas this will allow having the same branch in different repositories. diff --git a/sqitch/verify/change_git_branches_primary_key.sql b/sqitch/verify/change_git_branches_primary_key.sql new file mode 100644 index 0000000..db55981 --- /dev/null +++ b/sqitch/verify/change_git_branches_primary_key.sql @@ -0,0 +1,7 @@ +-- Verify guix-data-service:change_git_branches_primary_key on pg + +BEGIN; + +-- XXX Add verifications here. + +ROLLBACK; -- cgit v1.2.3