summaryrefslogtreecommitdiff
path: root/lib/RT/CustomField_Local.pm
blob: 2deb3b8e3626b5bd2c7218df74c5a02362ea8b0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package RT::CustomField;

use strict;
no warnings 'redefine';

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

1;