如何在 Rails 5.0 中向现有的 table 添加评论?

How to add comment to an existing table in Rails 5.0?

我正在处理一个 ROR 项目,我想为每个表添加注释。我可以通过更改 phppgadmin 中的表直接执行此操作,但我想使用 migrations 来执行此操作。我已经搜索了很多但没有运气。

我尝试通过以下方式进行同样的操作:

def change
    set_table_comment :active_admin_comments, 'This table stores stuff.'
  end

但还是没有运气。

您应该使用 migration_comments 在迁移文件中添加注释。有关详细信息,请访问 migration_comments.