1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
SET client_min_messages=ERROR; CREATE TABLE PublisherConfig ( id serial PRIMARY KEY, distribution integer NOT NULL CONSTRAINT publisherconfig__distribution__fk REFERENCES distribution, root_dir text NOT NULL, base_url text NOT NULL, copy_base_url text NOT NULL ); CREATE UNIQUE INDEX publisherconfig__distribution__idx ON PublisherConfig(distribution); INSERT INTO LaunchpadDatabaseRevision VALUES (2208, 52, 0); |