summaryrefslogtreecommitdiff
path: root/README.1.4.0pre2-3
blob: eac5dae10bea304e3882e6808098fa3310a7bf76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
the following is necessary to upgrade from 1.4.0pre2 to pre3 or later.

install the perl modules and httemplate as per install.html or upgrade8.html

CREATE TABLE part_svc_column (
  columnnum int primary key,
  svcpart int not null,
  columnname varchar(64) not null,
  columnvalue varchar(80) null,
  columnflag char(1) null
);

CREATE UNIQUE INDEX part_svc_column1 ON part_svc_column ( svcpart, columnname );

CREATE TABLE queue (
  jobnum int primary key,
  job varchar not null,
  _date int not null,
  status varchar(80) not null
);

CREATE TABLE queue_arg (
  argnum int primary key,
  jobnum int not null,
  arg varchar null
);

CREATE INDEX queue_arg1 ON queue_arg ( jobnum );

Run bin/dbdef-create

Run bin/fs-migrate-part_svc

Create the `/usr/local/etc/freeside/cache.<i>datasrc</i>' directory
  (ownded by the freeside user).

freeside-queued was installed with the Perl modules.  Start it now and ensure
that it is run upon system startup.