X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2FSchema.pm;h=aaca5ef3bf3983691e1943cbc89fb64ff8fd5767;hb=85aee8e40103f4e9d547258f8a06fea580345519;hp=c11fd05f1da513aed5f35efdc54fec0709ba4153;hpb=369cc8545df88dd4e717ccd8f6aa8719bc4308b3;p=freeside.git diff --git a/FS/FS/Schema.pm b/FS/FS/Schema.pm index c11fd05f1..aaca5ef3b 100644 --- a/FS/FS/Schema.pm +++ b/FS/FS/Schema.pm @@ -226,13 +226,15 @@ sub dbdef_dist { sub tables_hashref { - my($char_d) = 80; #default maxlength for text fields + my $char_d = 80; #default maxlength for text fields #my(@date_type) = ( 'timestamp', '', '' ); - my(@date_type) = ( 'int', 'NULL', '' ); - my(@perl_type) = ( 'text', 'NULL', '' ); + my @date_type = ( 'int', 'NULL', '' ); + my @perl_type = ( 'text', 'NULL', '' ); my @money_type = ( 'decimal', '', '10,2' ); + my $username_len = 32; #usernamemax config file + return { 'agent' => { @@ -245,6 +247,7 @@ sub tables_hashref { 'disabled', 'char', 'NULL', 1, 'username', 'varchar', 'NULL', $char_d, '_password','varchar', 'NULL', $char_d, + 'ticketing_queueid', 'int', 'NULL', '', ], 'primary_key' => 'agentnum', 'unique' => [], @@ -558,7 +561,7 @@ sub tables_hashref { ], 'primary_key' => 'pkgnum', 'unique' => [], - 'index' => [ ['custnum'] ], + 'index' => [ ['custnum'], ['pkgpart'] ], }, 'cust_refund' => { @@ -1119,7 +1122,7 @@ sub tables_hashref { ], 'primary_key' => 'ratedetailnum', 'unique' => [ [ 'ratenum', 'orig_regionnum', 'dest_regionnum' ] ], - 'index' => [], + 'index' => [ [ 'ratenum', 'dest_regionnum' ] ], }, 'rate_region' => {