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

My HTML document is not linking to my CSS stylesheet properly -

php array slice every 2th rule -

node.js - Sending sockets to client side, Error: Converting circular structure to JSON -