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