我将我的应用程序推送到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
答案 0 :(得分:1)
尝试销毁应用并再次创建:)