web/config/sql/se/GitCommits.sql
Mike Colagrosso 2eb7fef027 Remove primary key GitCommitId
The table already has a Created column, and that's the column we use to sort on.
2024-11-04 13:16:56 -06:00

7 lines
221 B
SQL

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;