Skip to content

Commit

Permalink
000_mysql_8_support
Browse files Browse the repository at this point in the history
  • Loading branch information
realms-mud committed Mar 18, 2024
1 parent 0d6bc72 commit b83982a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions secure/simulated-efuns/database/initial/generateDB.sql
@@ -1,10 +1,10 @@
CREATE TABLE `versionInfo` (
`id` int(11) NOT NULL,
`versionType` varchar(15) NOT NULL,
PRIMARY KEY (`id`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
##
insert into versionInfo (versionType) values ('1', 'database');
insert into versionInfo (id, versionType) values ('1', 'database');
##
CREATE TABLE `temporaryBans` (
`id` int(11) NOT NULL AUTO_INCREMENT,
Expand Down

0 comments on commit b83982a

Please sign in to comment.