mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-16 10:13:26 +02:00
8 lines
274 B
SQL
8 lines
274 B
SQL
CREATE TABLE IF NOT EXISTS `frontend_session` (
|
|
`session_id` varchar(255) NOT NULL PRIMARY KEY,
|
|
`data` longtext,
|
|
`created` int(10) unsigned NOT NULL,
|
|
`modified` int(10) unsigned NOT NULL,
|
|
`ip_address` varchar(45) DEFAULT NULL
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|