Reputation: 7011
Anyone have any reason why this line would work locally but Heroku would throw an error?
where(auth.slice(:provider, :uid)).first_or_initialize.tap do |user|
Cheers!
Upvotes: 0
Views: 157
Reputation: 9701
You might have forgotten to do a heroku run rake db:migrate
.
Upvotes: 2