1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-18 12:14:15 +00:00

Merge pull request #1190 from xboston/patch-1

fix session table
This commit is contained in:
astaxie 2015-06-04 22:09:26 +08:00
commit b9852df51c

View File

@ -21,7 +21,7 @@
// mysql session support need create table as sql:
// CREATE TABLE `session` (
// `session_key` char(64) NOT NULL,
// session_data` blob,
// `session_data` blob,
// `session_expiry` int(11) unsigned NOT NULL,
// PRIMARY KEY (`session_key`)
// ) ENGINE=MyISAM DEFAULT CHARSET=utf8;