X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fdocs%2Fupgrade8.html;h=a179e96b425de76a3808ee03bc8bbd7d8ec8a339;hb=310a027b9b72cf7d98c7f3e05b3bd1164077f2ab;hp=b35194df2a82ce9b942a49d2853a142476387bb2;hpb=6412f71a3557249225abf5eb2096ebad1729c585;p=freeside.git diff --git a/httemplate/docs/upgrade8.html b/httemplate/docs/upgrade8.html index b35194df2..a179e96b4 100644 --- a/httemplate/docs/upgrade8.html +++ b/httemplate/docs/upgrade8.html @@ -5,7 +5,7 @@

Upgrading to 1.4.0 from 1.3.1

@@ -33,6 +33,7 @@ PerlSetVar Global /usr/local/etc/freeside/asp-global/
    +
  • NOTE: Mason support is still a bit buggy in the 1.4.0 prereleases. This will be fixed before 1.4.0. You have been warned.
  • Run make masondocs
  • Copy masondocs/ to your web server's document space.
  • Copy htetc/handler.pl to your web server's configuration directory. @@ -72,28 +73,64 @@ CREATE TABLE svc_forward ( ); CREATE TABLE cust_credit_bill ( + creditbillnum int primary key, crednum int not null, invnum int not null, - _date timestamp not null, - amount decimal(10,2) not null, - PRIMARY KEY (crednum) + _date int not null, + amount decimal(10,2) not null ); +CREATE TABLE cust_bill_pay ( + billpaynum int primary key, + invnum int not null, + paynum int not null, + _date int not null, + amount decimal(10,2) not null +); + +CREATE TABLE cust_credit_refund ( + creditrefundnum int primary key, + crednum int not null, + refundnum int not null, + _date int not null, + amount decimal(10,2) not null +); + +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 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 ); + ALTER TABLE svc_acct ADD domsvc integer NOT NULL; ALTER TABLE svc_domain ADD catchall integer NULL; -ALTER TABLE part_svc ADD svc_acct__domsvc integer NULL; -ALTER TABLE part_svc ADD svc_acct__domsvc_flag char(1) NULL; -ALTER TABLE part_svc ADD svc_domain__catchall integer NULL; -ALTER TABLE part_svc ADD svc_domain__catchall_flag char(1) NULL; -ALTER TABLE part_svc ADD svc_forward__srcsvc integer NULL; -ALTER TABLE part_svc ADD svc_forward__srcsvc_flag char(1) NULL; -ALTER TABLE part_svc ADD svc_forward__dstsvc integer NULL; -ALTER TABLE part_svc ADD svc_forward__dstsvc_flag char(1) NULL; -ALTER TABLE part_svc ADD svc_forward__dst integer NULL; -ALTER TABLE part_svc ADD svc_forward__dst_flag char(1) NULL; ALTER TABLE cust_main ADD referral_custnum integer NULL; +ALTER TABLE cust_pay ADD custnum integer; +ALTER TABLE cust_refund ADD custnum integer; CREATE INDEX cust_main3 ON cust_main ( referral_custnum ); +CREATE INDEX cust_credit_bill1 ON cust_credit_bill ( crednum ); CREATE INDEX cust_credit_bill2 ON cust_credit_bill ( invnum ); +CREATE INDEX cust_bill_pay1 ON cust_bill_pay ( invnum ); +CREATE INDEX cust_bill_pay2 ON cust_bill_pay ( paynum ); +CREATE INDEX cust_credit_refund1 ON cust_credit_refund ( crednum ); +CREATE INDEX cust_credit_refund2 ON cust_credit_refund ( refundnum ); +CREATE UNIQUE INDEX part_svc_column1 ON part_svc_column ( svcpart, columnname );
  • If you are using PostgreSQL, apply the following changes to your database: @@ -152,5 +189,51 @@ ALTER TABLE cust_main ADD COLUMN comments varchar NULL;
  • Run bin/dbdef-create.
  • create a service based on svc_forward
  • Run bin/fs-migrate-svc_acct_sm -
  • create the conf.dbsrc/user_policy as appropriate for your site +
  • Run bin/fs-migrate-payref +
  • Run bin/fs-migrate-part_svc +
  • After running bin/fs-migrate-payref, apply the following changes to your database: + +
    PostgreSQLMySQL, others
    +
    +CREATE TABLE cust_pay_temp (
    +  paynum int primary key,
    +  custnum int not null,
    +  paid decimal(10,2) not null,
    +  _date int null,
    +  payby char(4) not null,
    +  payinfo varchar(16) null,
    +  paybatch varchar(80) null
    +);
    +INSERT INTO cust_pay_temp SELECT * from cust_pay;
    +DROP TABLE cust_pay;
    +ALTER TABLE cust_pay_temp RENAME TO cust_pay;
    +CREATE UNIQUE INDEX cust_pay1 ON cust_pay paynum;
    +CREATE TABLE cust_refund_temp (
    +  refundnum int primary key,
    +  custnum int not null,
    +  _date int null,
    +  refund decimal(10,2) not null,
    +  otaker varchar(8) not null,
    +  reason varchar(80) not null,
    +  payby char(4) not null,
    +  payinfo varchar(16) null,
    +  paybatch varchar(80) null
    +);
    +INSERT INTO cust_refund_temp SELECT * from cust_refund;
    +DROP TABLE cust_refund;
    +ALTER TABLE cust_refund_temp RENAME TO cust_refund;
    +CREATE UNIQUE INDEX cust_refund1 ON cust_refund refundnum;
    +
    +
    +
    +ALTER TABLE cust_pay DROP COLUMN invnum;
    +ALTER TABLE cust_refund DROP COLUMN crednum;
    +
    +
    +
  • IMPORTANT: After applying the second set of database changes, run bin/dbdef-create again. +
  • create the user_policy configuration file as appropriate for your site. +
  • Create the `/usr/local/etc/freeside/cache.datasrc' directory + (ownded by the freeside user). +
  • freeside-queued was installed with the Perl modules. Start it now and ensure that is run upon system startup. +