blob: aba8b7a3702be30f64ec558f6359ce189c71f5ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
the following is necessary to upgrade from 1.4.0pre11 to 1.4.0pre12
if you're upgrading from before 1.4.0pre12 see README.1.4.0pre11 first!
if you're upgrading from 1.3.1 follow the instructions in
httemplate/docs/upgrade8.html instead
----
install the FS perl modules and httemplate as per install.html or upgrade8.html
ALTER TABLE cust_bill_event ADD status varchar(80);
ALTER TABLE cust_bill_event ADD statustext text NULL;
UPDATE cust_bill_event SET status = 'done';
Run bin/dbdef-create
Run bin/create-history-tables
Run bin/dbdef-create again
Restart Apache and freeside-queued
|