summaryrefslogtreecommitdiff
path: root/rt/lib/RT/CustomField_Vendor.pm
blob: 9f55c9aa40a646ccd275bc87f7a75fee8d322142 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package RT::CustomField;
use strict;
no warnings 'redefine';

sub _VendorAccessible {
    {
        Required => 
                {read => 1, write => 1, sql_type => 5, length => 6, is_blob => 0, is_numeric => 1, type => 'smallint(6)', default => '0'},
    },
};

1;