我正在处理一个ROR项目,我想向每个表添加注释。我可以通过修改phppgadmin中的表来直接做到这一点,但是我想使用迁移来做到这一点。我找了很多,但是运气不好。
我试着用下面的方法做同样的事情:
def change
set_table_comment :active_admin_comments, 'This table stores stuff.'
end
但是还是没有运气。
您应该使用migration_comments
在迁移文件中添加注释。更多详细信息请访问migration_comments
从Rails 5开始,您可以使用change_table_comment本地完成此操作
def change
change_table_comment :active_admin_comments, 'This table stores stuff.'
end