mirror of
https://github.com/standardebooks/web.git
synced 2025-07-07 07:10:29 -04:00
Co-authored-by: Job Curtis <job.curtis@gmail.com> Co-authored-by: Alex Cabal <alex@standardebooks.org>
6 lines
221 B
SQL
6 lines
221 B
SQL
CREATE TABLE `FeedUserAgents` (
|
|
`UserAgentId` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|
`UserAgent` text NOT NULL,
|
|
`Created` datetime NOT NULL,
|
|
PRIMARY KEY (`UserAgentId`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|