improve mandatory fields, #9260
[freeside.git] / rt / lib / RT / CustomField_Vendor.pm
diff --git a/rt/lib/RT/CustomField_Vendor.pm b/rt/lib/RT/CustomField_Vendor.pm
new file mode 100644 (file)
index 0000000..9f55c9a
--- /dev/null
@@ -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;