0

我有一个看起来像这样的 Rails 迁移:

puts "*** What would you like to do? ***"
puts "(a)dd columns AND copy data"
puts "(c)olumns only (no data copying)"
puts "(d)ata only (no column adding)"
puts "(q)uit"
reply = $stdin.gets.chomp
...
(subsequent code depends on the reply variable)

这适用于我的开发系统。

Heroku 在我输入字母后不接受我的回复,因为它给了我上述文本作为提示。

我怎样才能让它在 Heroku 上工作?

4

1 回答 1

0

而不是运行

heroku rake db:migrate

跑:

heroku run bash

然后您可以运行交互式迁移。

于 2012-06-11T08:26:15.547 回答