mirror of
https://github.com/standardebooks/web.git
synced 2025-07-14 02:21:55 -04:00
7 lines
234 B
SQL
7 lines
234 B
SQL
CREATE TABLE `ApiKeys` (
|
|
`UserId` int(10) unsigned NOT NULL,
|
|
`Created` datetime NOT NULL,
|
|
`Ended` datetime DEFAULT NULL,
|
|
`Notes` text DEFAULT NULL,
|
|
KEY `idxUserId` (`UserId`,`Ended`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|