diff options
author | ivan <ivan> | 2006-08-22 12:09:25 +0000 |
---|---|---|
committer | ivan <ivan> | 2006-08-22 12:09:25 +0000 |
commit | 86cb6d3882df9bcf8076558d597383da30ae0786 (patch) | |
tree | e5bfb6c57a9e649fa4c2cfd5c40b624d9f57d148 /README.1.5.0pre6 | |
parent | 4845aaefedfcbaa25716694b6d80f3dd6d56530a (diff) |
removing old upgrade instructions... can always get the out of the Attic
Diffstat (limited to 'README.1.5.0pre6')
-rw-r--r-- | README.1.5.0pre6 | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/README.1.5.0pre6 b/README.1.5.0pre6 deleted file mode 100644 index f2ee7e20f..000000000 --- a/README.1.5.0pre6 +++ /dev/null @@ -1,46 +0,0 @@ -CREATE TABLE cust_pay_refund ( - payrefundnum serial NOT NULL, - paynum int NOT NULL, - refundnum int NOT NULL, - _date int NOT NULL, - amount decimal(10,2) NOT NULL, - PRIMARY KEY (payrefundnum) -); -CREATE INDEX cust_pay_refund1 ON cust_pay_refund(paynum); -CREATE INDEX cust_pay_refund2 ON cust_pay_refund(refundnum); - -CREATE TABLE cust_pay_void ( - paynum int NOT NULL, - custnum int NOT NULL, - paid decimal(10,2) NOT NULL, - _date int, - payby char(4) NOT NULL, - payinfo varchar(80), - paybatch varchar(80), - closed char(1), - void_date int, - reason varchar(80), - otaker varchar(32) NOT NULL, - PRIMARY KEY (paynum) -); -CREATE INDEX cust_pay_void1 ON cust_pay_void(custnum); - -alter table svc_external alter column id drop not null; -alter table h_svc_external alter column id drop not null; - -INSERT INTO msgcat ( msgnum, msgcode, locale, msg ) VALUES ( 20, 'svc_external-id', 'en_US', 'External ID' ); -INSERT INTO msgcat ( msgnum, msgcode, locale, msg ) VALUES ( 21, 'svc_external-title', 'en_US', 'Title' ); - -CREATE TABLE part_pkg_option ( - optionnum int primary key, - pkgpart int not null, - optionname varchar(80) not null, - optionvalue text NULL -); -CREATE INDEX part_pkg_option1 ON part_pkg_option ( pkgpart ); -CREATE INDEX part_pkg_option2 ON part_pkg_option ( optionname ); - -dbdef-create username -create-history-tables username cust_pay_refund cust_pay_void part_pkg_option -dbdef-create username - |