mirror of
https://github.com/standardebooks/web.git
synced 2025-07-07 07:10:29 -04:00
7 lines
234 B
SQL
7 lines
234 B
SQL
CREATE TABLE `Sessions` (
|
|
`UserId` int(10) unsigned NOT NULL,
|
|
`Created` datetime NOT NULL,
|
|
`SessionId` char(36) NOT NULL,
|
|
KEY `idxUserId` (`UserId`),
|
|
KEY `idxSessionId` (`SessionId`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|