~launchpad-pqm/launchpad/devel

1
2
3
4
5
6
7
8
9
10
11
12
13
14
SET client_min_messages=ERROR;

CREATE TABLE FeatureFlagChangelogEntry (
    id serial PRIMARY KEY,
    date_changed TIMESTAMP without time zone NOT NULL
        DEFAULT timezone('UTC'::text, now()),
    diff text NOT NULL,
    "comment" text NOT NULL,
    person INTEGER NOT NULL REFERENCES person (id));

CREATE INDEX featureflagchangelogentry__person__idx
    ON FeatureFlagChangelogEntry(person);

INSERT INTO LaunchpadDatabaseRevision VALUES (2208, 48, 0);