I get the following error when I try to deploy a rails app. I’m not even sure what the error is. Could someone please help? I tried cleaning up some of the migration files I had (e.g. ones where I had dropped a table and/ore removed columns) but it doesn’t seem to help.
When I run rails normally (e.g. rails s), I get this message. I’ve ignored it until now because it didn’t really affect the app but could fly fail because of this? If so, how do I fix this?
.rbenv/versions/2.6.7/lib/ruby/gems/2.6.0/gems/pry-byebug-3.8.0/lib/pry-byebug/control_d_handler.rb:5: warning: control_d_handler's arity of 2 parameters was deprecated (eval_string, pry_instance). Now it gets passed just 1 parameter (pry_instance)
How did you do that? If you edited db/schema.rb directly that won’t work, the database itself has a schema and that needs to be updated. Generally you would update that schema by creating a migration.