mirror of
https://github.com/standardebooks/web.git
synced 2025-07-22 15:24:46 -04:00
work
This commit is contained in:
parent
d086ea59bd
commit
7f50f00b42
15 changed files with 303 additions and 130 deletions
7
config/sql/se/ApiKeys.sql
Normal file
7
config/sql/se/ApiKeys.sql
Normal file
|
@ -0,0 +1,7 @@
|
|||
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;
|
Loading…
Add table
Add a link
Reference in a new issue