Initial Ebook DB schema

This commit is contained in:
Mike Colagrosso 2024-02-19 22:49:20 -07:00 committed by Alex Cabal
parent f97539f399
commit 073f138c47
9 changed files with 87 additions and 0 deletions

View file

@ -0,0 +1,6 @@
CREATE TABLE `LocSubjects` (
`LocSubjectId` int(10) unsigned NOT NULL AUTO_INCREMENT,
`Name` varchar(255) NOT NULL,
PRIMARY KEY (`LocSubjectId`),
UNIQUE KEY `idxUnique` (`Name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;