← Back to team overview

launchpad-reviewers team mailing list archive

[Merge] ~twom/launchpad:db-oci-policy-distribute-the-credentials into launchpad:db-devel

 

Tom Wardill has proposed merging ~twom/launchpad:db-oci-policy-distribute-the-credentials into launchpad:db-devel.

Commit message:
Add OCI Credentials field to Distribution

Requested reviews:
  Launchpad code reviewers (launchpad-reviewers)

For more details, see:
https://code.launchpad.net/~twom/launchpad/+git/launchpad/+merge/395770
-- 
Your team Launchpad code reviewers is requested to review the proposed merge of ~twom/launchpad:db-oci-policy-distribute-the-credentials into launchpad:db-devel.
diff --git a/database/schema/patch-2210-24-0.sql b/database/schema/patch-2210-24-0.sql
new file mode 100644
index 0000000..833fa88
--- /dev/null
+++ b/database/schema/patch-2210-24-0.sql
@@ -0,0 +1,11 @@
+-- Copyright 2021 Canonical Ltd.  This software is licensed under the
+-- GNU Affero General Public License version 3 (see the file LICENSE).
+
+SET client_min_messages=ERROR;
+
+ALTER TABLE Distribution
+    ADD COLUMN oci_credentials INTEGER REFERENCES OCIRegistryCredentials;
+
+COMMENT ON COLUMN Distribution.oci_credentials IS 'Credentials and URL to use for uploading all OCI Images in this distribution to a registry.';
+
+INSERT INTO LaunchpadDatabaseRevision VALUES (2210, 24, 0);