wisemapping-open-source/config/database/mysql/create-database.sql

10 lines
313 B
MySQL
Raw Normal View History

2014-01-25 22:24:53 +01:00
#
# Command: mysql -u root -p < create_database.sql
#
2014-01-19 16:39:42 +01:00
DROP DATABASE IF EXISTS wisemapping;
CREATE DATABASE IF NOT EXISTS wisemapping
2013-03-18 03:19:29 +01:00
CHARACTER SET = 'utf8'
COLLATE = 'utf8_unicode_ci';
2011-04-09 17:48:36 +02:00
GRANT ALL ON wisemapping.* TO 'wisemapping'@'localhost';
2014-01-19 16:39:42 +01:00
SET PASSWORD FOR 'wisemapping'@'localhost' = PASSWORD('password');