「Ruby/rails/db接続」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→できたtable) |
(→databaseのschemaを作っておく) |
||
(同じ利用者による、間の3版が非表示) | |||
行1: | 行1: | ||
==databaseのschemaを作っておく== | ==databaseのschemaを作っておく== | ||
− | create database helloworld_development default character set utf8mb4; | + | create database helloworld_development default character set utf8mb4; |
==db設定追加== | ==db設定追加== | ||
行7: | 行7: | ||
username: user1 | username: user1 | ||
password: passwoireru | password: passwoireru | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− |
2022年9月21日 (水) 01:38時点における最新版
databaseのschemaを作っておく
create database helloworld_development default character set utf8mb4;
db設定追加
vi config/database.yml
host: localhost username: user1 password: passwoireru