X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=README.1.4.0pre11;h=5a4bcedc7051b9fec8ea24de9c6efd029a5a9d3e;hp=c3a64d7b43075702a7494d1d42c961ccc7b95e09;hb=ab33e906a196646c5351c21848b5d6f63b4400dd;hpb=968f75993d7ec66d743bd5ab5e43d1d46556c27c diff --git a/README.1.4.0pre11 b/README.1.4.0pre11 index c3a64d7b4..5a4bcedc7 100644 --- a/README.1.4.0pre11 +++ b/README.1.4.0pre11 @@ -1,2 +1,33 @@ -install rsync +the following is necessary to upgrade from 1.4.0pre ( 9 or 10 ) +to 1.4.0pre11 + +if you're upgrading from before 1.4.0pre11 see README.1.4.0pre9 first! + +if you're upgrading from 1.3.1 follow the instructions in +httemplate/docs/upgrade8.html instead + +---- + +install rsync + +install the FS perl modules and httemplate as per install.html or upgrade8.html + +ALTER TABLE queue ADD svcnum int NULL; +ALTER TABLE queue ADD statustext text NULL; +CREATE INDEX queue1 ON queue ( svcnum ); +CREATE INDEX queue2 ON queue ( status ); + +DROP TABLE part_export_option; +CREATE TABLE part_export_option ( + optionnum int primary key, + exportnum int not null, + optionname varchar(80) not null, + optionvalue text NULL +); +CREATE INDEX part_export_option1 ON part_export_option ( exportnum ); +CREATE INDEX part_export_option2 ON part_export_option ( optionname ); + +Run bin/dbdef-create + +Restart Apache and freeside-queued