X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fdocs%2Fupgrade8.html;h=a368d4488fa90c8482c665fd2197f2ff86d39ada;hb=e6b57805f6b3e76448ab9b6d280f2c53bc1410f3;hp=765c2b8d50d1bd4694d67f498dfe247ca778dfb5;hpb=42ac86258bce00f5e7fa2db7e375c4a344295a15;p=freeside.git diff --git a/httemplate/docs/upgrade8.html b/httemplate/docs/upgrade8.html index 765c2b8d5..a368d4488 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,34 +73,87 @@ 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, + _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 ); + +CREATE TABLE part_pop_local ( + localnum int primary key, + popnum int not null, + city varchar(80) null, + state char(2) null, + npa char(3) not null, + nxx char(3) not null +); +CREATE UNIQUE INDEX part_pop_local1 ON part_pop_local ( npa, nxx ); + 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_pay_batch ADD paybatchnum integer; +ALTER TABLE cust_refund ADD custnum integer; +ALTER TABLE cust_pkg ADD manual_flag char(1) NULL; +ALTER TABLE part_pkg ADD plan varchar NULL; +ALTER TABLE part_pkg ADD plandata varchar NULL; +ALTER TABLE part_pkg ADD setuptax char(1) NULL; +ALTER TABLE part_pkg ADD recurtax char(1) NULL; 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 cust_pay_batch_pkey ON cust_pay_batch ( paybatchnum ); +CREATE UNIQUE INDEX part_svc_column1 ON part_svc_column ( svcpart, columnname );
  • If you are using PostgreSQL, apply the following changes to your database:
     CREATE UNIQUE INDEX agent_pkey ON agent ( agentnum );
    -CREATE UNIQUE INDEX agent_type_pkey agent_type ( typenum );
    +CREATE UNIQUE INDEX agent_type_pkey ON agent_type ( typenum );
     CREATE UNIQUE INDEX cust_bill_pkey ON cust_bill ( invnum );
     CREATE UNIQUE INDEX cust_credit_pkey ON cust_credit ( crednum );
     CREATE UNIQUE INDEX cust_main_pkey ON cust_main ( custnum );
    @@ -150,7 +204,56 @@ ALTER TABLE cust_main ADD COLUMN comments varchar NULL;
     
  • If you are using the signup server, reinstall it according to the instructions. The 1.3.x signup server is not compatible with 1.4.x.
  • 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 +
  • If you have svc_acct_sm records or service definitions: +
      +
    • Create a service definition with table svc_forward +
    • Run bin/fs-migrate-svc_acct_sm +
    +
  • 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. +