~launchpad-pqm/launchpad/devel

7675.466.1 by Graham Binns
Add a BugHeatJob table.
1
SET client_min_messages=ERROR;
2
7675.466.2 by Graham Binns
Renamed BugHeatJob -> BugJob.
3
CREATE TABLE BugJob(
7675.466.3 by Graham Binns
Made the changes requested by stub.
4
    id serial NOT NULL PRIMARY KEY,
7675.466.1 by Graham Binns
Add a BugHeatJob table.
5
    job integer NOT NULL REFERENCES Job(id),
7675.466.2 by Graham Binns
Renamed BugHeatJob -> BugJob.
6
    bug integer NOT NULL REFERENCES Bug(id),
7
    job_type integer NOT NULL,
8
    json_data text
7675.466.1 by Graham Binns
Add a BugHeatJob table.
9
);
10
7675.466.3 by Graham Binns
Made the changes requested by stub.
11
INSERT INTO LaunchpadDatabaseRevision VALUES (2207, 28, 0)