7675.1052.1
by Curtis Hovey
Added schema to support feature flag change records. |
1 |
SET client_min_messages=ERROR; |
2 |
||
7675.1052.8
by Curtis Hovey
Renamed FeatureFlagChange to FeatureFlagChangelogEntry. |
3 |
CREATE TABLE FeatureFlagChangelogEntry ( |
7675.1052.9
by Curtis Hovey
Added comment and person to FeatureFlagChangelogEntry. |
4 |
id serial PRIMARY KEY, |
5 |
date_changed TIMESTAMP without time zone NOT NULL |
|
7675.1052.1
by Curtis Hovey
Added schema to support feature flag change records. |
6 |
DEFAULT timezone('UTC'::text, now()), |
7675.1052.9
by Curtis Hovey
Added comment and person to FeatureFlagChangelogEntry. |
7 |
diff text NOT NULL, |
8 |
"comment" text NOT NULL, |
|
9 |
person INTEGER NOT NULL REFERENCES person (id)); |
|
10 |
||
7675.1052.13
by Curtis Hovey
Fixed spelling. |
11 |
CREATE INDEX featureflagchangelogentry__person__idx |
12 |
ON FeatureFlagChangelogEntry(person); |
|
7675.1052.1
by Curtis Hovey
Added schema to support feature flag change records. |
13 |
|
7675.1052.13
by Curtis Hovey
Fixed spelling. |
14 |
INSERT INTO LaunchpadDatabaseRevision VALUES (2208, 48, 0); |