Skip to content
This repository has been archived by the owner on Mar 21, 2022. It is now read-only.

Commit

Permalink
Merge pull request #55 from DokaDoka/master
Browse files Browse the repository at this point in the history
fix(sql): fix disabled user column query
  • Loading branch information
thelindat authored Oct 16, 2021
2 parents 749dfd0 + 7995739 commit c1b36cf
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions esx_multicharacter.sql
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ COLLATE='utf8mb4_unicode_ci'
ENGINE=InnoDB
;

ALTER TABLE `users`
`disabled` TINYINT(1) NULL DEFAULT '0',
ALTER TABLE `users` ADD COLUMN
`disabled` TINYINT(1) NULL DEFAULT '0'
;

0 comments on commit c1b36cf

Please sign in to comment.