Use innodb engine for cake sessions table

pull/546/head
David André 2015-06-10 07:09:42 +02:00
parent 8caf13144f
commit b6c89061a3
1 changed files with 1 additions and 1 deletions

View File

@ -13,4 +13,4 @@ CREATE TABLE cake_sessions (
data text,
expires int(11) default NULL,
PRIMARY KEY (id)
);
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;