user13790968
user13790968

Reputation: 123

heroku down migration and rollback

I just pushed the latest to heroku and when trying to db:migrate I got migration rolled back message. What do I need to do to migrate. I tried running heroku run rake db:migrate:up VERSION= for this particular migration and didn't help. I ran status on heroku migrations and two appear to be down. Same locally returns all up. What do I need to do to migrate?

enter image description here

enter image description here

enter image description here

Upvotes: 0

Views: 268

Answers (1)

Luskmo
Luskmo

Reputation: 341

It seems you did not create the table "likes" before the migration file called "AddPresenceToLikes".

You can edit this migration file and add (before the rest of the content) :

create_table :likes do |t|
** your table columns here **
end 

Upvotes: 1

Related Questions