我的一张表中有一个名为“type”的列。当我尝试像 group.type 一样访问它时,出现以下错误:
super: no superclass method `type' for #<Group:0x000000035eaf30>
但是,当我尝试使用迁移重命名列时,出现以下错误
No such column: groups.type (migration failed)
我尝试使用查询直接在 mysql 数据库中重命名该列,但这也不起作用。
mysql> alter table groups change type group_type int(11);
ERROR 1054 (42S22): Unknown column 'type' in 'groups'
请帮忙。