1
-- Copyright 2011 Canonical Ltd. This software is licensed under the
2
-- GNU Affero General Public License version 3 (see the file LICENSE).
4
SET client_min_messages=ERROR;
6
-- Add a column to identifie a DSP as an overlay.
7
ALTER TABLE DistroSeriesParent
8
ADD COLUMN is_overlay BOOLEAN NOT NULL DEFAULT FALSE;
10
-- Add a reference to a component.
11
ALTER TABLE DistroSeriesParent
12
ADD COLUMN component INTEGER REFERENCES Component;
14
-- Add a 'reference' to a pocket.
15
ALTER TABLE DistroSeriesParent
16
ADD COLUMN pocket INTEGER;
18
INSERT INTO LaunchpadDatabaseRevision VALUES (2208, 71, 0);