~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to database/schema/patch-2208-71-0.sql

Merge db-devel.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
-- Copyright 2011 Canonical Ltd.  This software is licensed under the
 
2
-- GNU Affero General Public License version 3 (see the file LICENSE).
 
3
 
 
4
SET client_min_messages=ERROR;
 
5
 
 
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;
 
9
 
 
10
-- Add a reference to a component.
 
11
ALTER TABLE DistroSeriesParent
 
12
    ADD COLUMN component INTEGER REFERENCES Component;
 
13
 
 
14
-- Add a 'reference' to a pocket.
 
15
ALTER TABLE DistroSeriesParent
 
16
    ADD COLUMN pocket INTEGER;
 
17
 
 
18
INSERT INTO LaunchpadDatabaseRevision VALUES (2208, 71, 0);