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.
我将我的应用程序推送到 heroku,但似乎数据库没有迁移(数据库有 0 个表和 0 个条目)。如何正确迁移它?
如果您使用的是入门级数据库,则填充这些统计信息会有延迟。如果您在以下位置,您可以立即查看是否有桌子psql:
psql
$ heroku pg:psql -a app_name psql=> \dt [...tables...]
另外,请在此处查看我关于在本地使用 postgres 而不是 sqlite3 的答案(推荐):