Skip to content

Commit

Permalink
fix(sql): missing comma in ox_groups table creation (overextended#174)
Browse files Browse the repository at this point in the history
  • Loading branch information
citRaTTV authored Oct 3, 2024
1 parent b286bd8 commit 0f003df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/install.sql
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ CREATE TABLE IF NOT EXISTS `ox_groups` (
`label` VARCHAR(50) NOT NULL,
`type` VARCHAR(50) NULL,
`colour` TINYINT UNSIGNED DEFAULT NULL,
`hasAccount` TINYINT(1) NOT NULL DEFAULT '0'
`hasAccount` TINYINT(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`name`)
);

Expand Down

0 comments on commit 0f003df

Please sign in to comment.