RT# 38517 - Added Lingua::EN::NameParse to parse real name into first and last name.
[freeside.git] / rt / lib / RT / CustomField_Vendor.pm
1 package RT::CustomField;
2 use strict;
3 no warnings 'redefine';
4
5 sub _VendorAccessible {
6     {
7         Required => 
8                 {read => 1, write => 1, sql_type => 5, length => 6, is_blob => 0, is_numeric => 1, type => 'smallint(6)', default => '0'},
9     },
10 };
11
12 1;