summaryrefslogtreecommitdiffstats
path: root/upgrades/dbpatches/1.3/mysql/patch/users.sql
diff options
context:
space:
mode:
Diffstat (limited to 'upgrades/dbpatches/1.3/mysql/patch/users.sql')
-rw-r--r--upgrades/dbpatches/1.3/mysql/patch/users.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/upgrades/dbpatches/1.3/mysql/patch/users.sql b/upgrades/dbpatches/1.3/mysql/patch/users.sql
index 9d15cb91..fcad30a5 100644
--- a/upgrades/dbpatches/1.3/mysql/patch/users.sql
+++ b/upgrades/dbpatches/1.3/mysql/patch/users.sql
@@ -10,7 +10,7 @@ CREATE TABLE users_tmp (
refresh integer DEFAULT '30' NOT NULL,
type integer DEFAULT '0' NOT NULL,
PRIMARY KEY (userid)
-);
+) ENGINE=InnoDB;
CREATE INDEX users_1 on users_tmp (alias);
insert into users_tmp select userid,alias,name,surname,passwd,url,autologout,lang,refresh,3 from users;