X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2FSchema.pm;h=ea02dfebfeed925d5219220b86089bc6f0ab32eb;hb=3050434f62122e73d748dac26a5e70193b444c0a;hp=9f9770c31e311e3a189e892a81f7ca5e5a33efbf;hpb=6af1b1bfa25e5ececef5e0dcd38b55917121cee2;p=freeside.git diff --git a/FS/FS/Schema.pm b/FS/FS/Schema.pm index 9f9770c31..ea02dfebf 100644 --- a/FS/FS/Schema.pm +++ b/FS/FS/Schema.pm @@ -389,6 +389,8 @@ sub tables_hashref { 'billpkgnum', 'int', '', '', '', '', 'amount', @money_type, '', '', 'setuprecur', 'varchar', '', $char_d, '', '', + 'sdate', @date_type, '', '', + 'edate', @date_type, '', '', ], 'primary_key' => 'creditbillpkgnum', 'unique' => [], @@ -405,6 +407,7 @@ sub tables_hashref { # 'middle', 'varchar', 'NULL', $char_d, '', '', 'first', 'varchar', '', $char_d, '', '', 'ss', 'varchar', 'NULL', 11, '', '', + 'birthdate',@date_type, '', '', 'company', 'varchar', 'NULL', $char_d, '', '', 'address1', 'varchar', '', $char_d, '', '', 'address2', 'varchar', 'NULL', $char_d, '', '', @@ -471,6 +474,19 @@ sub tables_hashref { 'index' => [ ['custnum'], ], }, + 'cust_main_note' => { + 'columns' => [ + 'notenum', 'serial', '', '', '', '', + 'custnum', 'int', '', '', '', '', + '_date', @date_type, '', '', + 'otaker', 'varchar', '', 32, '', '', + 'comments', 'text', 'NULL', '', '', '', + ], + 'primary_key' => 'notenum', + 'unique' => [], + 'index' => [ [ 'custnum' ], [ '_date' ], ], + }, + 'cust_main_county' => { #county+state+country are checked off the #cust_main_county for validation and to provide # a tax rate. @@ -565,6 +581,8 @@ sub tables_hashref { 'billpkgnum', 'int', '', '', '', '', 'amount', @money_type, '', '', 'setuprecur', 'varchar', '', $char_d, '', '', + 'sdate', @date_type, '', '', + 'edate', @date_type, '', '', ], 'primary_key' => 'billpaypkgnum', 'unique' => [],