如何在夹具中指定多态关联

发布于 2024-11-28 20:33:01 字数 381 浏览 2 评论 0原文

我有这个固定装置:

resource:
  name: my resource
  owner: user_1 (User)

资源定义如下:

class Resource < ActiveRecord::Base
  belongs_to :owner, :polymorphic => true

用户定义如下:

class User < ActiveRecord::Base
  has_many :resources, :as => :owner

当我运行测试时,出现错误,表明表中未定义列“所有者”。我做错了什么?

I have this fixture:

resource:
  name: my resource
  owner: user_1 (User)

Resource is defined like this:

class Resource < ActiveRecord::Base
  belongs_to :owner, :polymorphic => true

User is defined like this:

class User < ActiveRecord::Base
  has_many :resources, :as => :owner

When I run the test I get an error that the column 'owner' is not defined in the table. What am I doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乖不如嘢 2024-12-05 20:33:01

灯具应具有owner_id 和owner_type。例如:owner_id 为 1,owner_type 为“User”

The fixture should have owner_id and owner_type. For example: owner_id as 1 and owner_type as "User"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文