Fix misspelling

This commit is contained in:
derek.holloway
2025-07-14 08:14:47 -07:00
parent b7462329c1
commit 3875622d31
3 changed files with 17 additions and 17 deletions
+4 -4
View File
@@ -65,7 +65,7 @@ CREATE TABLE IF NOT EXISTS `Resume` (
FOREIGN KEY (`ResumeExperienceID`) REFERENCES `ResumeExperience`(`ID`) ON DELETE CASCADE
) AUTO_INCREMENT=1;
CREATE TABLE IF NOT EXISTS `ResumeMillitary` (
CREATE TABLE IF NOT EXISTS `ResumeMilitary` (
`ID` int NOT NULL AUTO_INCREMENT,
`ResumeID` int NOT NULL,
`Country` char(2) NOT NULL,
@@ -77,15 +77,15 @@ CREATE TABLE IF NOT EXISTS `Resume` (
FOREIGN KEY (`ResumeID`) REFERENCES `Resume`(`ID`) ON DELETE CASCADE
) AUTO_INCREMENT=1;
CREATE TABLE IF NOT EXISTS `ResumeMillitaryBullet` (
CREATE TABLE IF NOT EXISTS `ResumeMilitaryBullet` (
`ID` int NOT NULL AUTO_INCREMENT,
`ResumeID` int NOT NULL,
`ResumeMillitaryID` int NOT NULL,
`ResumeMilitaryID` int NOT NULL,
`Achevement` varchar(100) NOT NULL,
`Description` text DEFAULT NULL,
PRIMARY KEY (`ID`),
FOREIGN KEY (`ResumeID`) REFERENCES `Resume`(`ID`) ON DELETE CASCADE,
FOREIGN KEY (`ResumeMillitaryID`) REFERENCES `ResumeMillitary`(`ID`) ON DELETE CASCADE
FOREIGN KEY (`ResumeMilitaryID`) REFERENCES `ResumeMilitary`(`ID`) ON DELETE CASCADE
) AUTO_INCREMENT=1;
CREATE TABLE IF NOT EXISTS `ResumeEducation` (