working one-time charges
[freeside.git] / README.1.4.0pre11
1 the following is necessary to upgrade from 1.4.0pre ( 9 or 10 )
2 to 1.4.0pre11
3
4 if you're upgrading from before 1.4.0pre11 see README.1.4.0pre9 first!
5
6 if you're upgrading from 1.3.1 follow the instructions in
7 httemplate/docs/upgrade8.html instead
8
9 ----
10
11 install rsync <http://rsync.samba.org/>
12
13 install the FS perl modules and httemplate as per install.html or upgrade8.html
14
15 ALTER TABLE queue ADD svcnum int NULL;
16 ALTER TABLE queue ADD statustext text NULL;
17 CREATE INDEX queue1 ON queue ( svcnum );
18 CREATE INDEX queue2 ON queue ( status );
19
20 DROP TABLE part_export_option;
21 CREATE TABLE part_export_option (
22   optionnum int primary key,
23   exportnum int not null,
24   optionname varchar(80) not null,
25   optionvalue text NULL
26 );
27 CREATE INDEX part_export_option1 ON part_export_option ( exportnum );
28 CREATE INDEX part_export_option2 ON part_export_option ( optionname );
29
30 Run bin/dbdef-create
31
32 Restart Apache and freeside-queued
33