문제

i'm working on the One Month Rails app and I recently run into this error when i try to run rake db: migrate:

enter image description here

Here is what my migration file looks like:

enter image description here

Any help on how to solve this? Thanks in advance

도움이 되었습니까?

해결책

Try with specifying the version and run.

rake:db:migrate VERSION = your_file_version

In your case,it is

rake:db:migrate VERSION = 20140418122310

Edit

In your migration file change this line

create_table :pins do |t|

to like this

change_table :pins do |t|
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top