price plans web gui 1st pass, oh my
[freeside.git] / README.1.4.0pre3-4
1 the following is necessary to upgrade from 1.4.0pre3 to pre4 or later.
2
3 install the perl modules and httemplate as per install.html or upgrade8.html
4
5 CREATE TABLE part_pop_local (
6   localnum int primary key,
7   popnum int not null,
8   city varchar(80) null,
9   state char(2) null,
10   npa char(3) not null,
11   nxx char(3) not null
12 );
13 CREATE INDEX part_pop_local1 ON part_pop_local ( npa, nxx );
14 ALTER TABLE cust_pkg ADD manual_flag char(1) NULL;
15 ALTER TABLE cust_pay_batch ADD paybatchnum integer;
16 CREATE UNIQUE INDEX cust_pay_batch_pkey ON cust_pay_batch ( paybatchnum );
17 ALTER TABLE part_pkg ADD plan varchar NULL;
18 ALTER TABLE part_pkg ADD plandata varchar NULL;
19
20 Run bin/dbdef-create
21