X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS%2FSchema.pm;h=33d0fd6d85d22473a01cf04a973a370b765ece8a;hp=d502a12be8c50d7fbd09073cf937bb39af27a460;hb=a5a4afbb77bbdffc25ae94d10b645b0bcc76e859;hpb=cbbd0225b07269209c674733bcf70f1c1308e84a diff --git a/FS/FS/Schema.pm b/FS/FS/Schema.pm index d502a12be..33d0fd6d8 100644 --- a/FS/FS/Schema.pm +++ b/FS/FS/Schema.pm @@ -307,6 +307,7 @@ sub tables_hashref { 'part_bill_event' => { 'columns' => [ 'eventpart', 'serial', '', '', + 'freq', 'varchar', 'NULL', $char_d, 'payby', 'char', '', 4, 'event', 'varchar', '', $char_d, 'eventcode', @perl_type, @@ -625,6 +626,7 @@ sub tables_hashref { 'plandata', 'text', 'NULL', '', 'disabled', 'char', 'NULL', 1, 'taxclass', 'varchar', 'NULL', $char_d, + 'classnum', 'int', 'NULL', '', ], 'primary_key' => 'pkgpart', 'unique' => [], @@ -1277,6 +1279,16 @@ sub tables_hashref { 'index' => [ [ 'disabled' ] ], }, + 'pkg_class' => { + 'columns' => [ + 'classnum', 'serial', '', '', + 'classname', 'varchar', '', $char_d, + ], + 'primary_key' => 'classnum', + 'unique' => [], + 'index' => [], + }, + }; }