~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to database/schema/patch-2207-28-0.sql

Made the changes requested by stub.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
SET client_min_messages=ERROR;
2
2
 
3
3
CREATE TABLE BugJob(
4
 
    id integer NOT NULL PRIMARY KEY,
 
4
    id serial NOT NULL PRIMARY KEY,
5
5
    job integer NOT NULL REFERENCES Job(id),
6
6
    bug integer NOT NULL REFERENCES Bug(id),
7
7
    job_type integer NOT NULL,
8
8
    json_data text
9
9
);
10
10
 
11
 
INSERT INTO LaunchpadDatabaseRevision VALUES (2207, 99, 0)
 
11
INSERT INTO LaunchpadDatabaseRevision VALUES (2207, 28, 0)