ace/Database/Create/create_mysql.sql
KochiroOfHG b60bd33465 Update create_mysql.sql
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.
2017-02-07 00:45:22 +01:00

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;