X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fdocs%2Fupgrade8.html;h=b0d1e3fe2e597c87887e59000ea09c0ca2199d87;hp=97758fdb217d85f7c2fd60736c67a87ff09f5964;hb=ec43c49b63208a39acc00290992dbc47b2d5034b;hpb=f36b6a178c9811357ff5d5291874aa239d22bc2a diff --git a/httemplate/docs/upgrade8.html b/httemplate/docs/upgrade8.html index 97758fdb2..b0d1e3fe2 100644 --- a/httemplate/docs/upgrade8.html +++ b/httemplate/docs/upgrade8.html @@ -120,6 +120,14 @@ CREATE TABLE queue_arg ( ); CREATE INDEX queue_arg1 ON queue_arg ( jobnum ); +CREATE TABLE queue_depend ( + dependnum int primary key, + jobnum int not null, + depend_jobnum int not null +); +CREATE INDEX queue_depend1 ON queue_depend ( jobnum ); +CREATE INDEX queue_depend2 ON queue_depend ( depend_jobnum ); + CREATE TABLE part_pop_local ( localnum int primary key, popnum int not null, @@ -345,6 +353,13 @@ ALTER TABLE cust_refund DROP COLUMN crednum;
  • IMPORTANT: After applying the second set of database changes, run bin/dbdef-create again.
  • IMPORTANT: run bin/create-history-tables
  • IMPORTANT: After running bin/create-history-tables, run bin/dbdef-create again. +
  • As the freeside UNIX user, run bin/populate-msgcat username to populate the message catalog, passing the username of a Freeside user you c +reated above: +
    +$ su freeside
    +$ bin/populate-msgcat username
    +
  • set the user_policy configuration value as appropriate for your site.
  • set the locale configuration value to en_US.
  • the mxmachines, nsmachines, arecords and cnamerecords configuration values have been deprecated. Set the defaultrecords configuration value instead.