mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-09 00:43:23 +01:00
10 lines
313 B
MySQL
10 lines
313 B
MySQL
|
#
|
||
|
# Command: mysql -u root -p < create_database.sql
|
||
|
#
|
||
|
DROP DATABASE IF EXISTS wisemapping;
|
||
|
|
||
|
CREATE DATABASE IF NOT EXISTS wisemapping
|
||
|
CHARACTER SET = 'utf8'
|
||
|
COLLATE = 'utf8_unicode_ci';
|
||
|
GRANT ALL ON wisemapping.* TO 'wisemapping'@'localhost';
|
||
|
SET PASSWORD FOR 'wisemapping'@'localhost' = PASSWORD('password');
|