Skip to content

Commit

Permalink
Merge pull request #1590 from Djily90/add_missing_comma
Browse files Browse the repository at this point in the history
Added missing comma to fix the 'software' table creation failure
  • Loading branch information
charleneauger committed Feb 20, 2024
2 parents fd7926c + 3bf3303 commit df8d6d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/ocsbase_new.sql
Expand Up @@ -2485,7 +2485,7 @@ CREATE TABLE `software` (
KEY `HARDWARE_ID` (`HARDWARE_ID`),
KEY `NAME_ID` (`NAME_ID`),
KEY `PUBLISHER_ID` (`PUBLISHER_ID`),
KEY `VERSION_ID` (`VERSION_ID`)
KEY `VERSION_ID` (`VERSION_ID`),
KEY `HARDWARE_ID_2` (`HARDWARE_ID`, `NAME_ID`, `VERSION_ID`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
Expand Down

0 comments on commit df8d6d8

Please sign in to comment.