我试图在heroku上调试我的应用程序,似乎一次或多次迁移都没有运行。如果不手动完成每次迁移,我都会尝试确定哪个迁移是最后一次迁移。
环境:rails,postgresql
答案 0 :(得分:2)
来自终端:
heroku pg:psql --app app_name db_name
select * from schema_migrations;
寻找最后一个条目
另一种方式......从终端
heroku run console --app app_name
class SchemaMigration<ActiveRecord::Base
end
然后写下
SchemaMigration.last