为什么这不允许我在生产模式下迁移?

Why this won't let me migrate on production mode?

我正在尝试使用名为 acts_as_commentable_with_threading 的 gem。
正如文件所说,我在下面执行了这些

rails generate acts_as_commentable_with_threading_migration

rake db:migrate ENV=production

然而,这只会将评论 table 添加到开发数据库中,而不是添加到生产数据库中:(

为什么以及如何向生产数据库添加评论 table?

试试这个

 rake db:migrate RAILS_ENV=production