Rails / ActiveRecord - 单表继承 - 覆盖类型字段
是否可以覆盖该列的名称?我正在更改应用程序的某些部分以使用 STI,并且还有其他字段正在使用。我也希望它是整数类型。
有什么想法吗?
Is it possible to override the name of this colummn? I'm changing some parts of my applications to use STI and there are other fields in use for. I would also prefer it to be of type integer.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据 ActiveRecord::ModelSchema (3.2) 中的代码,
set_inheritance_column
方法现已弃用,您应该使用self.inheritance_column = column
According to the code in ActiveRecord::ModelSchema (3.2), the
set_inheritance_column
method is now deprecated and you should useself.inheritance_column = column
在现代 Rails 中,您可以使用
inheritance_column=
(如 panckreous 指出):在旧版本的 Rails 中(即最初编写此答案时周围的情况),您可以使用 [< code>set_inheritance_column] 更改名称:
该列仍然必须是字符串(或
text
),因为 AR 想要放置 其中的类名:In modern Rails, you'd use
inheritance_column=
(as panckreous noted):In older versions of Rails (i.e. what was around when this answer was originally written), you'd use [
set_inheritance_column
] to change the name:The column still has to be a string (or
text
) as AR will want to put the class name in there: