You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
288 B
10 lines
288 B
|
|
CREATE TABLE IF NOT EXISTS `session` (
|
|
`id` char(32) NOT NULL,
|
|
`expires` int(11) unsigned NOT NULL,
|
|
`user_id` int(11) unsigned DEFAULT '0',
|
|
`data` text NOT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `expires` (`expires`),
|
|
KEY `user_id` (`user_id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|