2

我已将我的应用程序推送到 Heroku,但是我的数据库(Sqlite3)无法迁移。我知道 heroku 会自动迁移为 PG。[我没有安装 PG]。

我想如果有什么问题,我会收到错误提示。

这是我的结果:

pc-name$ heroku rake db:migrate --trace
(in /app)
** Invoke db:migrate (first_time)
** Invoke environment (first_time)
** Execute environment
** Execute db:migrate
** Invoke db:schema:dump (first_time)
** Invoke environment 
** Execute db:schema:dump

另外,当我尝试创建-

pc-name$ heroku rake db:create --trace
cwogwtvrpc already exists
    (in /app)
** Invoke db:create (first_time)
** Invoke db:load_config (first_time)
** Invoke rails_env (first_time)
** Execute rails_env
** Execute db:load_config
** Execute db:create
4

1 回答 1

1

尝试销毁应用程序并再次创建它:)

于 2011-06-11T19:58:50.757 回答