c8d99905e562ba4a6983c2f34d03dd5525ecf695
[freeside.git] / README.1.4.0pre2-3
1 the following is necessary to upgrade from 1.4.0pre2 to pre3 or later.
2
3 install the perl modules and httemplate as per install.html or upgrade8.html
4
5 CREATE TABLE part_svc_column (
6   columnnum int primary key,
7   svcpart int not null,
8   columnname varchar(64) not null,
9   columnvalue varchar(80) null,
10   columnflag char(1) null
11 );
12
13 CREATE UNIQUE INDEX part_svc_column1 ON part_svc_column ( svcpart, columnname );
14
15 CREATE TABLE queue (
16   jobnum int primary key,
17   job varchar not null,
18   _date int not null,
19   status varchar(80) not null
20 );
21
22 CREATE TABLE queue_arg (
23   argnum int primary key,
24   jobnum int not null,
25   arg varchar null
26 );
27
28 CREATE INDEX queue_arg1 ON queue_arg ( jobnum );
29
30 Run bin/fs-migrate-part_svc
31
32 Run bin/dbdef-create
33
34 Create the `/usr/local/etc/freeside/cache.<i>datasrc</i>' directory
35   (ownded by the freeside user).
36
37 freeside-queued was installed with the Perl modules.  Start it now and ensure
38 that it is run upon system startup.
39