2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[Rails]テスト環境のDBが空だったら

Posted at

development環境のschema dumpを取る

bin/rake db:schema:dump

取得したdumpファイルをテスト環境へ反映

bin/rake db:schema:load RAILS_ENV=test

絵文字も扱えるようにする

create database [database name] CHARACTER SET utf8mb4
GRANT ALL ON [database name].* to [user]@'%'
FLUSH PRIVILEGES
2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?