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