create database ${db_name} default charset utf8 COLLATE utf8_general_ci;
grant all on ${db_name}.* to '${user_name}'@'localhost' IDENTIFIED BY '${password}';
flush privileges;
create database ${db_name} default charset utf8 COLLATE utf8_general_ci;
grant all on ${db_name}.* to '${user_name}'@'localhost' IDENTIFIED BY '${password}';
flush privileges;