Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2014
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. DROP TABLE IF EXISTS `ci_sessions`;
  2.  
  3. CREATE TABLE `ci_sessions` (
  4. `session_id` varchar(40) NOT NULL DEFAULT '0',
  5. `ip_address` varchar(45) NOT NULL DEFAULT '0',
  6. `user_agent` varchar(120) NOT NULL,
  7. `last_activity` int(10) unsigned NOT NULL DEFAULT '0',
  8. `user_data` text NOT NULL,
  9. PRIMARY KEY (`session_id`),
  10. KEY `last_activity_idx` (`last_activity`)
  11. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement