mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-07 23:41:59 +01:00
6 lines
174 B
MySQL
6 lines
174 B
MySQL
|
create database MYSQL_DATABASE character set 'utf8';
|
||
|
grant all privileges on MYSQL_DATABASE.* to MYSQL_USERNAME@localhost identified by 'MYSQL_PASSWORD';
|
||
|
flush privileges;
|
||
|
|
||
|
|