diff options
author | ivan <ivan> | 2004-10-26 11:26:35 +0000 |
---|---|---|
committer | ivan <ivan> | 2004-10-26 11:26:35 +0000 |
commit | 6fe8172b11d0369d0b1274d6825ec0c57afe8001 (patch) | |
tree | 0d6c9abe6b7f9a14c40db8c4360849a5aa583077 /README.1.5.0pre6 | |
parent | 717d562bcfb691d971a01b738d0b55cdda480cf0 (diff) |
modular price plans!
Diffstat (limited to 'README.1.5.0pre6')
-rw-r--r-- | README.1.5.0pre6 | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/README.1.5.0pre6 b/README.1.5.0pre6 index 7e46264c7..f2ee7e20f 100644 --- a/README.1.5.0pre6 +++ b/README.1.5.0pre6 @@ -31,7 +31,16 @@ alter table h_svc_external alter column id drop not null; 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 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_pkg_option ( pkgpart ); +CREATE INDEX part_pkg_option2 ON part_pkg_option ( optionname ); + dbdef-create username -create-history-tables username cust_pay_refund cust_pay_void +create-history-tables username cust_pay_refund cust_pay_void part_pkg_option dbdef-create username |