diff options
author | Christopher Baines <mail@cbaines.net> | 2022-06-17 12:54:43 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2022-06-17 12:54:43 +0100 |
commit | d19eb07138c5820f4c2fa1a71b7fb499acf39e4d (patch) | |
tree | 6e7bf4a47f01e512f827ff6b12481ac8bee5df18 /sqitch/revert | |
parent | 3b5950024b06ce0d01ece4d15fa4f8cec271b034 (diff) | |
download | data-service-d19eb07138c5820f4c2fa1a71b7fb499acf39e4d.tar data-service-d19eb07138c5820f4c2fa1a71b7fb499acf39e4d.tar.gz |
Add an index on git_commits
And also remove the duplicates that have crept in.
Diffstat (limited to 'sqitch/revert')
-rw-r--r-- | sqitch/revert/fix_git_commits_duplicates.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sqitch/revert/fix_git_commits_duplicates.sql b/sqitch/revert/fix_git_commits_duplicates.sql new file mode 100644 index 0000000..d80d9ef --- /dev/null +++ b/sqitch/revert/fix_git_commits_duplicates.sql @@ -0,0 +1,7 @@ +-- Revert guix-data-service:fix_git_commits_duplicates from pg + +BEGIN; + +-- XXX Add DDLs here. + +COMMIT; |