mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
Added "IF NOT EXISTS" to the create statements so that if the database already exists then a warning will be thrown instead of an error.
5 lines
287 B
SQL
5 lines
287 B
SQL
CREATE DATABASE IF NOT EXISTS `ace_auth` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
|
|
|
|
CREATE DATABASE IF NOT EXISTS `ace_character` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
|
|
|
|
CREATE DATABASE IF NOT EXISTS `ace_world` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
|