launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #29180
[Merge] ~andrey-fedoseev/launchpad:db-snap-base-features into launchpad:db-devel
Andrey Fedoseev has proposed merging ~andrey-fedoseev/launchpad:db-snap-base-features into launchpad:db-devel.
Commit message:
Add `SnapBase.features` column
Requested reviews:
Launchpad code reviewers (launchpad-reviewers)
For more details, see:
https://code.launchpad.net/~andrey-fedoseev/launchpad/+git/launchpad/+merge/429817
The column is used to designate the features available for a snap base
--
Your team Launchpad code reviewers is requested to review the proposed merge of ~andrey-fedoseev/launchpad:db-snap-base-features into launchpad:db-devel.
diff --git a/database/schema/patch-2211-06-0.sql b/database/schema/patch-2211-06-0.sql
new file mode 100644
index 0000000..b58d4ea
--- /dev/null
+++ b/database/schema/patch-2211-06-0.sql
@@ -0,0 +1,13 @@
+-- Copyright 2022 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 SnapBase
+ ADD COLUMN features jsonb;
+;
+
+COMMENT ON COLUMN SnapBase.features
+ IS 'The features supported by this base.';
+
+INSERT INTO LaunchpadDatabaseRevision VALUES (2211, 06, 0);