diff options
Diffstat (limited to 'rt/etc/upgrade/3.1.0/schema.mysql')
-rwxr-xr-x | rt/etc/upgrade/3.1.0/schema.mysql | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/rt/etc/upgrade/3.1.0/schema.mysql b/rt/etc/upgrade/3.1.0/schema.mysql index c4a345d3e..e4f02c278 100755 --- a/rt/etc/upgrade/3.1.0/schema.mysql +++ b/rt/etc/upgrade/3.1.0/schema.mysql @@ -1,4 +1,3 @@ -# {{{ Attributes CREATE TABLE Attributes ( id INTEGER NOT NULL AUTO_INCREMENT, @@ -13,9 +12,8 @@ CREATE TABLE Attributes ( LastUpdatedBy integer NOT NULL DEFAULT 0 , LastUpdated DATETIME NULL , PRIMARY KEY (id) -) TYPE=InnoDB; +) ENGINE=InnoDB; CREATE INDEX Attributes1 on Attributes(Name); CREATE INDEX Attributes2 on Attributes(ObjectType, ObjectId); -# }}} |