freeside/httemplate/docs upgrade10.html,1.32,1.33 schema.html,1.41,1.42

ivan ivan at pouncequick.420.am
Tue Oct 26 04:26:37 PDT 2004


Update of /home/cvs/cvsroot/freeside/httemplate/docs
In directory pouncequick:/tmp/cvs-serv3074/httemplate/docs

Modified Files:
	upgrade10.html schema.html 
Log Message:
modular price plans!

Index: upgrade10.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/docs/upgrade10.html,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -d -r1.32 -r1.33
--- upgrade10.html	17 Oct 2004 09:19:23 -0000	1.32
+++ upgrade10.html	26 Oct 2004 11:26:34 -0000	1.33
@@ -181,6 +181,15 @@
 );
 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;

Index: schema.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/docs/schema.html,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -d -r1.41 -r1.42
--- schema.html	6 Jul 2004 13:26:21 -0000	1.41
+++ schema.html	26 Oct 2004 11:26:34 -0000	1.42
@@ -277,6 +277,13 @@
         <li>plandata - additional price plan data
         <li>disabled - Disabled flag, empty or `Y'
       </ul>
+    <li><a name="part_pkg_option" href="man/FS/part_pkg_option.html">part_pkg_option</a> - Package definition options
+      <ul>
+        <li>optionnum - primary key
+        <li>pkgpart - <a href="#part_pkg">Package definition</a>
+        <li>optionname - option name
+        <li>optionvalue - option value
+      </ul>
     <li><a name="part_referral" href="man/FS/part_referral.html">part_referral</a> - Referral listing
       <ul>
         <li>refnum - primary key




More information about the freeside-commits mailing list