bonum_cete
bonum_cete

Reputation: 4962

Migrating db of existing project

I taking over an existing rails project. I currently trying to get the db setup. I have run rake db:create and the DB was created. I need to get the tables created. I have tried db:scheme:load, db:setup and db:migrate. All give me this error:

Mysql2::Error: Table 'blah' doesn't exist: SHOW FULL FIELDS FROM blahs

Then a long stack trace with nothing very helpful.

Thanks for any help!

Upvotes: 0

Views: 49

Answers (1)

techvineet
techvineet

Reputation: 5111

Check the migrations, there would be something like 'blah' (left by developer)

Upvotes: 1

Related Questions