summaryrefslogtreecommitdiff
path: root/rt/etc
diff options
context:
space:
mode:
authormark <mark>2010-10-02 20:54:27 +0000
committermark <mark>2010-10-02 20:54:27 +0000
commit97803d56c88dc4760140d912a76cb2730fcbf713 (patch)
treeeb99516925f32d36234d391f75746af9785463a9 /rt/etc
parenteb02bd7d44776cadc4c17f72df508afd223b142f (diff)
mandatory custom field flag, RT#9260
Diffstat (limited to 'rt/etc')
-rwxr-xr-xrt/etc/schema.mysql-4.11
1 files changed, 1 insertions, 0 deletions
diff --git a/rt/etc/schema.mysql-4.1 b/rt/etc/schema.mysql-4.1
index 172e477c1..173570219 100755
--- a/rt/etc/schema.mysql-4.1
+++ b/rt/etc/schema.mysql-4.1
@@ -386,6 +386,7 @@ CREATE TABLE CustomFields (
LastUpdatedBy integer NOT NULL DEFAULT 0 ,
LastUpdated DATETIME NULL ,
Disabled int2 NOT NULL DEFAULT 0 ,
+ Required int2 NOT NULL DEFAULT 0 ,
PRIMARY KEY (id)
) TYPE=InnoDB CHARACTER SET utf8;