web/config/sql/se/ApiKeys.sql
Alex Cabal 7f50f00b42 work
2022-07-10 00:55:24 -05:00

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;