mysql-initialization

mysql -u root -p

Enter password: ******

以下をコピペ。

create database faxocr_development;

create database faxocr_test;

create database faxocr_production;

use mysql;

insert into user set user="faxocr", password=password("faxocr"), host="localhost";

flush privileges;

grant all on faxocr_development.* to faxocr@localhost;

grant all on faxocr_production.* to faxocr@localhost;

grant all on faxocr_test.* to faxocr@localhost;