LoginSignup
5
5

More than 5 years have passed since last update.

rake db:migrate で ActiveRecord::StatementInvalid: Mysql2::Error: Table 'db.table' doesn't exist: SHOW FULL FIELDS FROM `table`

Last updated at Posted at 2016-11-24

背景

rake db:migrate しようとしたら tableないっておこられる。
migrateなのにそりゃないぜ。
よくわからないけど、設定ごにょごにょしたら直った。
後で詳しく調べる。

対処法

GEMFILEのfactory girlの設定のrequireをfalseにして、spec_helperでfactory girlをrequireしてあげれば通る。

Gemfile
gem 'factory_girl_rails', :require => false
spec_helper.rb
require 'factory_girl_rails'

参考

5
5
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
5
5