· 7 years ago · Dec 03, 2018, 06:20 PM
1CREATE TABLE IF NOT EXISTS `ci_sessions` (
2 `id` varchar(128) NOT NULL,
3 `ip_address` varchar(45) NOT NULL,
4 `timestamp` int(10) unsigned DEFAULT 0 NOT NULL,
5 `data` blob NOT NULL,
6 KEY `ci_sessions_timestamp` (`timestamp`)
7);