在 ActiveRecord 中命名引用
在我的 Rails 应用程序中,我有一个组织模型,其中引用了一个用户,我希望能够通过organization_instance.adminstrator 访问该模型。我不确定如何使用belongs_to 方法来完成此操作。
in my rails app, I have an Organization model, with a reference to a User, which I want to be able to access via organization_instance.adminstrator. I'm not sure how to accomplish this using the belongs_to method.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没关系。正确的解决方案(正如我发现的那样)是执行以下操作:
有趣的是,阅读文档可以为您做些什么:D
但是,这提出了一个新问题,该问题在文档中并不直接明显:如何生成迁移这?会
吗?
是正确的方法
Nevermind. The proper solution (as I found it), is to do the following:
interesting what reading the documentation can do for you :D
However, this poses a new question which is not directly apparent from the documentation: How do I generate the migration for this? Would
or
be the correct way?