Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只是将我的 rails 应用程序推送到 heroku,实际上我在本地有一些假数据,我通过 rails 控制台直接插入到我的表中。
在heroku中相当于什么,表是在heroku上配置的,但没有数据。
我不想在我的数据库中创建一个seed.rb,然后将其推送到github,然后在heroku 上运行rake db seed
我可以手动做吗?
您可以使用以下命令在 heroku 上输入您的应用程序控制台:
heroku run rails console
看看这颗宝石。Heroku gem 的所有依赖项都准备好了。将它捆绑在您的应用程序中,您可以执行以下操作:
heroku db:pull heroku db:push
命令是不言自明的。