diff options
author | ivan <ivan> | 2002-02-19 23:43:54 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-02-19 23:43:54 +0000 |
commit | 47bc56487b4aebf3e415767a053dc049fe4a28d4 (patch) | |
tree | eecaa844a76a3ea2bd023e85ccdc132431655079 /httemplate/docs/upgrade8.html | |
parent | add1cb10ab3ee094b58d49d74daaabb464c71f04 (diff) |
set EVERYTHING=1 for your own mod_perl compile
Diffstat (limited to 'httemplate/docs/upgrade8.html')
-rw-r--r-- | httemplate/docs/upgrade8.html | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/httemplate/docs/upgrade8.html b/httemplate/docs/upgrade8.html index 85c33d649..ac006d221 100644 --- a/httemplate/docs/upgrade8.html +++ b/httemplate/docs/upgrade8.html @@ -106,8 +106,12 @@ CREATE TABLE queue ( jobnum int primary key, job text not null, _date int not null, - status varchar(80) not null + status varchar(80) not null, + statustext text null, + svcnum int null ); +CREATE INDEX queue1 ON queue ( svcnum ); +CREATE INDEX queue2 ON queue ( status ); CREATE TABLE queue_arg ( argnum int primary key, @@ -161,11 +165,11 @@ CREATE INDEX part_export2 ON part_export ( exporttype ); CREATE INDEX part_export_option ( optionnum int primary key, exportnum int not null, - option varchar(80) not null, + optionname varchar(80) not null, optionvalue text NULL ); CREATE INDEX part_export_option1 ON part_export_option ( exportnum ); -CREATE INDEX part_export_option2 ON part_export_option ( option ); +CREATE INDEX part_export_option2 ON part_export_option ( optionname ); ALTER TABLE svc_acct ADD domsvc integer NOT NULL; ALTER TABLE svc_domain ADD catchall integer NULL; |