pay some attention to 1.4 RADIUS SQL export
[freeside.git] / README.1.4.0pre4567-8
1 the following is necessary to upgrade from 1.4.0pre (4 thru 7) to 1.4.0pre8
2
3 install the perl modules and httemplate as per install.html or upgrade8.html
4
5 ALTER TABLE part_pkg ADD disabled char(1) NULL;
6 ALTER TABLE part_svc ADD disabled char(1) NULL;
7
8 CREATE TABLE cust_bill_events (
9   eventnum int primary key,
10   invnum int not null,
11   eventpart int not null,
12   _date int not null,
13 );
14 CREATE UNIQUE INDEX cust_bill_events1 ON cust_bill_events ( eventpart, invnum );
15 CREATE INDEX cust_bill_events2 ON cust_bill_events ( invnum );
16
17 CREATE TABLE part_bill_events (
18   eventpart int primary key,
19   payby char(4) not null,
20   event varchar(80) not null,
21   eventcode text null,
22   seconds int null,
23   disabled char(1) null,
24 );
25 CREATE INDEX part_bill_events1 ON part_bill_events ( payby );
26
27 Run bin/dbdef-create
28
29 Restart Apache and freeside-queued
30