summaryrefslogtreecommitdiff
path: root/httemplate/docs/upgrade8.html
diff options
context:
space:
mode:
authorivan <ivan>2002-05-15 13:24:26 +0000
committerivan <ivan>2002-05-15 13:24:26 +0000
commiteb7c552dd8290d6b33a4e026c5dc21ebf01105cf (patch)
treef4e307c94039085b55bd2c416e78824cabe52911 /httemplate/docs/upgrade8.html
parentce119821d508611bce8d2c62c3faec237faa6612 (diff)
queue dependancies
Diffstat (limited to 'httemplate/docs/upgrade8.html')
-rw-r--r--httemplate/docs/upgrade8.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/httemplate/docs/upgrade8.html b/httemplate/docs/upgrade8.html
index 97758fdb2..e6184df14 100644
--- a/httemplate/docs/upgrade8.html
+++ b/httemplate/docs/upgrade8.html
@@ -120,6 +120,14 @@ CREATE TABLE queue_arg (
);
CREATE INDEX queue_arg1 ON queue_arg ( jobnum );
+CREATE TABLE queue_depend (
+ dependnum int primary key,
+ jobnum int not null,
+ depend_jobnum int not null
+);
+CREATE INDEX queue_depend1 ON queue_depend ( jobnum );
+CREATE INDEX queue_depend2 ON queue_depend ( depend_jobnum );
+
CREATE TABLE part_pop_local (
localnum int primary key,
popnum int not null,