mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-05 15:13:24 +01:00
10 lines
313 B
SQL
10 lines
313 B
SQL
#
|
|
# 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'); |