diff options
author | Christopher Baines <mail@cbaines.net> | 2019-08-04 09:39:40 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2019-08-04 09:39:40 +0100 |
commit | 84197686ce227b21dae48745f2919a51e070c3c5 (patch) | |
tree | 0ed4cc11138628575e490b803e766e8749a337d6 /sqitch/verify | |
parent | 1724bc485f13922d768bc09309a6a7975678c321 (diff) | |
download | data-service-84197686ce227b21dae48745f2919a51e070c3c5.tar data-service-84197686ce227b21dae48745f2919a51e070c3c5.tar.gz |
Fix some duplicated values in tables
The licenses table, along with the package_metadata table had duplicate
values. This could happen as the unique constraints on those tables didn't
properly account for the nullable fields.
The duplicates in those tables also affected the license_sets, packages,
package_derivations tables in a similar way. Finally, the
guix_revision_package_derivations table was also affected.
This commit adds a migration to fix the data, as well as the constraints. THe
code to populate the licenses and package_metadata tables is also updated.
Diffstat (limited to 'sqitch/verify')
-rw-r--r-- | sqitch/verify/fix_duplicated_licenses.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sqitch/verify/fix_duplicated_licenses.sql b/sqitch/verify/fix_duplicated_licenses.sql new file mode 100644 index 0000000..47379eb --- /dev/null +++ b/sqitch/verify/fix_duplicated_licenses.sql @@ -0,0 +1,7 @@ +-- Verify guix-data-service:fix_duplicated_licenses on pg + +BEGIN; + +-- XXX Add verifications here. + +ROLLBACK; |