diff options
| author | ivan <ivan> | 2004-11-22 18:20:21 +0000 | 
|---|---|---|
| committer | ivan <ivan> | 2004-11-22 18:20:21 +0000 | 
| commit | a5a258c91c5dc78897d16627b8092385ceb4c4d2 (patch) | |
| tree | ed92c98b0ed7c2a8647b8b92c50bd2acfc8e394b /httemplate/docs | |
| parent | 97ddf39b5798913bbd2b0205b2767df2cd362a2b (diff) | |
promo codes and separate signup addresses for hdn
Diffstat (limited to 'httemplate/docs')
| -rw-r--r-- | httemplate/docs/schema.html | 7 | ||||
| -rw-r--r-- | httemplate/docs/upgrade10.html | 4 | 
2 files changed, 8 insertions, 3 deletions
| diff --git a/httemplate/docs/schema.html b/httemplate/docs/schema.html index 2e78f6e9e..c5cfd5119 100644 --- a/httemplate/docs/schema.html +++ b/httemplate/docs/schema.html @@ -268,13 +268,14 @@          <li>pkgpart - primary key          <li>pkg - package name          <li>comment - non-customer visable package comment -        <li>setup - setup fee expression +        <li>promo_code - promotional code +        <li><i>deprecated</i> setup - setup fee expression          <li>freq - recurring frequency (months) -        <li>recur - recurring fee expression +        <li><i>deprecated</i> recur - recurring fee expression          <li>setuptax - Setup fee tax exempt flag, empty or `Y'          <li>recurtax - Recurring fee tax exempt flag, empty or `Y'          <li>plan - price plan -        <li>plandata - additional price plan data +        <li><i>deprecated</i> 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 diff --git a/httemplate/docs/upgrade10.html b/httemplate/docs/upgrade10.html index e17f7add3..9dacf91d8 100644 --- a/httemplate/docs/upgrade10.html +++ b/httemplate/docs/upgrade10.html @@ -250,6 +250,10 @@ ALTER TABLE pkg_svc ADD primary_svc char(1) NULL;  ALTER TABLE h_pkg_svc ADD primary_svc char(1) NULL;  ALTER TABLE svc_forward ADD src varchar(255) NULL;  ALTER TABLE h_svc_forward ADD src varchar(255) NULL; +ALTER TABLE part_pkg ADD promo_code varchar(80) NULL; +ALTER TABLE h_part_pkg ADD promo_code varchar(80) NULL; +CREATE INDEX part_pkg2 ON part_pkg ( promo_code ); +CREATE INDEX h_part_pkg2 ON h_part_pkg ( promo_code );  On recent Pg versions: | 
