X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fdocs%2Fupgrade10.html;h=2f2c2daa66e8550a067114c4404c4cf9e7e4cafb;hb=a496b337f8a6946cd100e4daea9f2692536ea9ce;hp=8922d198f6a9ad3ae6003ad4b90fe27f8f9624e2;hpb=cfe85e45bcba97089988b4dc22a895aec687f2c3;p=freeside.git diff --git a/httemplate/docs/upgrade10.html b/httemplate/docs/upgrade10.html index 8922d198f..2f2c2daa6 100644 --- a/httemplate/docs/upgrade10.html +++ b/httemplate/docs/upgrade10.html @@ -10,6 +10,9 @@ install Net::SSH 0.08 install NetAddr::IP, Chart::Base, IPC::ShareLite and Locale::SubCountry +INSERT INTO msgcat ( msgnum, msgcode, locale, msg ) VALUES ( 20, 'svc_external-id', 'en_US', 'External ID' ); +INSERT INTO msgcat ( msgnum, msgcode, locale, msg ) VALUES ( 21, 'svc_external-title', 'en_US', 'Title' ); + CREATE TABLE cust_bill_pkg_detail ( detailnum serial, pkgnum int NOT NULL, @@ -80,7 +83,7 @@ CREATE INDEX acct_snarf1 ON acct_snarf ( svcnum ); CREATE TABLE svc_external ( svcnum int NOT NULL, - id int NOT NULL, + id int, title varchar(80), PRIMARY KEY (svcnum) ); @@ -178,6 +181,15 @@ CREATE TABLE cust_pay_void ( ); CREATE INDEX cust_pay_void1 ON cust_pay_void(custnum); +CREATE TABLE part_pkg_option ( + optionnum int primary key, + pkgpart int not null, + optionname varchar(80) not null, + optionvalue text NULL +); +CREATE INDEX part_pkg_option1 ON part_export_option ( pkgpart ); +CREATE INDEX part_pkg_option2 ON part_export_option ( optionname ); + DROP INDEX cust_bill_pkg1; ALTER TABLE cust_bill_pkg ADD itemdesc varchar(80) NULL;