ruby on rails - You have 1 pending migrations: 20140415221104 CreateBoxesAndBoxesSuppliers -


when execute rake comand get:

    have 1 pending migrations:     20140415221104 createboxesandboxessuppliers      run `rake db:migrate` update database try again. 

as error suggests, need run rake db:migrate.

as per error, mysql2::error: table 'boxes' exists, created boxes table migration , 20140415221104 createboxesandboxessuppliers migration trying create boxes again.

you should not creating boxes table again in 20140415221104 createboxesandboxessuppliers migration.


Comments

Popular posts from this blog

c++ - How to add Crypto++ library to Qt project -

jQuery Mobile app not scrolling in Firefox -

how to receive file in java(servlet/jsp) -