mirror of
https://github.com/standardebooks/web.git
synced 2025-07-07 23:30:35 -04:00
Initial Ebook DB schema
This commit is contained in:
parent
f97539f399
commit
073f138c47
9 changed files with 87 additions and 0 deletions
7
config/sql/se/GitCommits.sql
Normal file
7
config/sql/se/GitCommits.sql
Normal file
|
@ -0,0 +1,7 @@
|
|||
CREATE TABLE `GitCommits` (
|
||||
`EbookId` int(10) unsigned NOT NULL,
|
||||
`Created` datetime NOT NULL,
|
||||
`Message` text NOT NULL,
|
||||
`Hash` char(40) NOT NULL,
|
||||
KEY `index1` (`EbookId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
Loading…
Add table
Add a link
Reference in a new issue