mirror of
https://github.com/standardebooks/web.git
synced 2025-07-15 02:46:46 -04:00
7 lines
274 B
SQL
7 lines
274 B
SQL
CREATE TABLE IF NOT EXISTS `EbookDownloads` (
|
|
`EbookId` int(10) unsigned NOT NULL,
|
|
`Created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
`IpAddress` inet6 NULL,
|
|
`UserAgent` mediumtext NULL,
|
|
INDEX `idxCreated` (`Created`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|