7675.1038.1
by Stuart Bishop
PersonSettings table to offload unnecessary columns from the Person table |
1 |
SET client_min_messages=ERROR; |
2 |
||
3 |
CREATE TABLE PersonSettings ( |
|
4 |
person integer PRIMARY KEY REFERENCES Person ON DELETE CASCADE, |
|
5 |
selfgenerated_bugnotifications boolean NOT NULL DEFAULT TRUE); |
|
6 |
||
7 |
INSERT INTO LaunchpadDatabaseRevision VALUES (2208, 38, 0); |