mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-23 12:30:41 +01:00
14 lines
373 B
SQL
14 lines
373 B
SQL
CREATE TABLE `session` (
|
|
`id` integer primary key autoincrement,
|
|
`user_id` int NOT NULL,
|
|
`created` datetime NOT NULL,
|
|
`last_active` datetime NOT NULL,
|
|
`ip` varchar(15) NOT NULL DEFAULT '',
|
|
`user_agent` text NOT NULL,
|
|
`expired` boolean NOT NULL DEFAULT false
|
|
);
|
|
|
|
CREATE INDEX `user_id` ON `session`(`user_id`);
|
|
|
|
CREATE INDEX `expired` ON `session`(`expired`);
|