summaryrefslogtreecommitdiff
path: root/lib/RT
diff options
context:
space:
mode:
Diffstat (limited to 'lib/RT')
-rw-r--r--lib/RT/CustomField_Local.pm13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/RT/CustomField_Local.pm b/lib/RT/CustomField_Local.pm
new file mode 100644
index 0000000..2deb3b8
--- /dev/null
+++ b/lib/RT/CustomField_Local.pm
@@ -0,0 +1,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;