質問

strange problem with rails migration.

I have 2 migrations in my app enter image description here

I run rake db:migrate enter image description here

Only one migration executed. No matter how many time I tried, the second migration was ignored

I also tried to run the specific migration by specifying a version number, but no luckenter image description here


Use rails 4.1 The first migration generated by

rails g scaffold User .......

The second migration generated by devise plugin

rails g devise user ........
役に立ちましたか?

解決

The migration file generated is without extension .rb. It was an issue that was already reported in Devise. It was resolved in Devise version 3.2.3. Read the issue Generated migration filename missing extension #2971

他のヒント

Second file needs the .rb extension?

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top