mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-05 15:13:24 +01:00
7 lines
207 B
SQL
7 lines
207 B
SQL
CREATE DATABASE wisemapping
|
|
CHARACTER SET = 'utf8'
|
|
COLLATE = 'utf8_unicode_ci';
|
|
CREATE USER 'wisemapping'@'localhost'
|
|
IDENTIFIED BY 'password';
|
|
GRANT ALL ON wisemapping.* TO 'wisemapping'@'localhost';
|