summaryrefslogtreecommitdiff
path: root/rt/lib/RT/CustomField_Vendor.pm
diff options
context:
space:
mode:
authormark <mark>2011-05-31 23:12:38 +0000
committermark <mark>2011-05-31 23:12:38 +0000
commit554c6cc1ad55ea6ff3907b4eb38332fbf520fdb0 (patch)
treea93e6658d73f66329e40e68ace4d8e24b5008903 /rt/lib/RT/CustomField_Vendor.pm
parent113d47ee6ca162ee0adb5bd2a74b59cc56b7f8a9 (diff)
improve mandatory fields, #9260
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 000000000..9f55c9aa4
--- /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;