diff options
author | ivan <ivan> | 2002-02-05 07:57:38 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-02-05 07:57:38 +0000 |
commit | d9d79aeecc2c0d79bd1d066a702252ffd683661e (patch) | |
tree | dd423cd16bc8ad7818e284e5c921e77317af110c | |
parent | 1340e8879e31d3fcbe09b73477f3aac3dbf65113 (diff) |
fix part_export_option indices
-rw-r--r-- | README.1.4.0pre8 | 4 | ||||
-rw-r--r-- | httemplate/docs/upgrade8.html | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/README.1.4.0pre8 b/README.1.4.0pre8 index a6f591b93..6872bdd60 100644 --- a/README.1.4.0pre8 +++ b/README.1.4.0pre8 @@ -53,8 +53,8 @@ CREATE INDEX part_export_option ( option varchar(80) not null, optionvalue text NULL ); -CREATE INDEX part_export_option1 ON part_export ( exportnum ); -CREATE INDEX part_export_option2 ON part_export ( option ); +CREATE INDEX part_export_option1 ON part_export_option ( exportnum ); +CREATE INDEX part_export_option2 ON part_export_option ( option ); ALTER TABLE cust_bill ADD closed char(1) NULL; ALTER TABLE cust_pay ADD closed char(1) NULL; diff --git a/httemplate/docs/upgrade8.html b/httemplate/docs/upgrade8.html index f0b16222c..022d1f6ae 100644 --- a/httemplate/docs/upgrade8.html +++ b/httemplate/docs/upgrade8.html @@ -162,8 +162,8 @@ CREATE INDEX part_export_option ( option varchar(80) not null, optionvalue text NULL ); -CREATE INDEX part_export_option1 ON part_export ( exportnum ); -CREATE INDEX part_export_option2 ON part_export ( option ); +CREATE INDEX part_export_option1 ON part_export_option ( exportnum ); +CREATE INDEX part_export_option2 ON part_export_option ( option ); ALTER TABLE svc_acct ADD domsvc integer NOT NULL; ALTER TABLE svc_domain ADD catchall integer NULL; |