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.

9 lines
288 B

  1. CREATE TABLE IF NOT EXISTS `session` (
  2. `id` char(32) NOT NULL,
  3. `expires` int(11) unsigned NOT NULL,
  4. `user_id` int(11) unsigned DEFAULT '0',
  5. `data` text NOT NULL,
  6. PRIMARY KEY (`id`),
  7. KEY `expires` (`expires`),
  8. KEY `user_id` (`user_id`)
  9. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;