launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #28961
[Merge] ~cjwatson/launchpad:merge-db-stable into launchpad:master
Colin Watson has proposed merging ~cjwatson/launchpad:merge-db-stable into launchpad:master.
Commit message:
Merge db-stable f9f2c14a37 (Add jsonb column to RevisionStatusReport)
Requested reviews:
Launchpad code reviewers (launchpad-reviewers)
For more details, see:
https://code.launchpad.net/~cjwatson/launchpad/+git/launchpad/+merge/427907
--
Your team Launchpad code reviewers is requested to review the proposed merge of ~cjwatson/launchpad:merge-db-stable into launchpad:master.
diff --git a/database/schema/patch-2211-03-0.sql b/database/schema/patch-2211-03-0.sql
new file mode 100644
index 0000000..188c38a
--- /dev/null
+++ b/database/schema/patch-2211-03-0.sql
@@ -0,0 +1,9 @@
+-- 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 RevisionStatusReport
+ ADD COLUMN properties jsonb;
+
+INSERT INTO LaunchpadDatabaseRevision VALUES (2211, 03, 0);