diff options
author | ivan <ivan> | 2002-01-29 17:42:46 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-01-29 17:42:46 +0000 |
commit | c5c0ba135749164ec8ba75d18f76c29625e1bc7e (patch) | |
tree | 6c855b5b5e0a4774d7f6737fc46bf357042e6d3c /README.1.4.0pre4567-8 | |
parent | 6991d4986df7fb3a6c7c49b5ae1b3713e87a16c4 (diff) |
weight, plan and plandata fields in part_bill_event
Diffstat (limited to 'README.1.4.0pre4567-8')
-rw-r--r-- | README.1.4.0pre4567-8 | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/README.1.4.0pre4567-8 b/README.1.4.0pre4567-8 index 1f7878395..11fc9c1db 100644 --- a/README.1.4.0pre4567-8 +++ b/README.1.4.0pre4567-8 @@ -8,7 +8,9 @@ http://cleanwhisker.420.am/cgi-bin/cvsweb/freeside/Attic/ ----- -install the perl modules and httemplate as per install.html or upgrade8.html +install Time::Duration and Tie::IxHash + +install the FS perl modules and httemplate as per install.html or upgrade8.html ALTER TABLE part_pkg ADD disabled char(1) NULL; ALTER TABLE part_svc ADD disabled char(1) NULL; @@ -17,7 +19,7 @@ CREATE TABLE cust_bill_event ( eventnum int primary key, invnum int not null, eventpart int not null, - _date int not null, + _date int not null ); CREATE UNIQUE INDEX cust_bill_events1 ON cust_bill_events ( eventpart, invnum ); CREATE INDEX cust_bill_events2 ON cust_bill_events ( invnum ); @@ -28,7 +30,10 @@ CREATE TABLE part_bill_event ( event varchar(80) not null, eventcode text null, seconds int null, - disabled char(1) null, + weight int not null, + plan varchar(80) null, + plandata text null, + disabled char(1) null ); CREATE INDEX part_bill_events1 ON part_bill_events ( payby ); |