在这种情况下该怎么办最好?
我有树模型会议、客户、联系人。
当我创建新会议时,我可以选择客户或联系人,但如何更好地存储这种结构和关联? !会议表中的用例 client_id 和 contact_id 不好。
I have tree model Meeting , Client, Contact.
When i create new meeting, i can select client or contact , but how better store this structure and association? !Use case client_id and contact_id in meeting table not good.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们假设某人(创建者)可以创建会议。创建者可以是客户或联系人。
为此,您首先需要在会议表上有一个“creator_type”和“creator_id”列,因此使用
script/rails generated migration AddTypeToMeetings
添加迁移,然后编辑迁移文件,如下所示:
其次,您必须进行调整您的模型:
meeting.rb
client.rb
contact.rb
如何使用:
您可以在此处阅读有关多态关联的更多信息:
We assume someone (a creator) can create a meeting. The creator may be a client or a contact.
For that you need a "creator_type" and "creator_id" column on your Meetings Table first, so add an migration using
script/rails generate migration AddTypeToMeetings
Then edit the migration file like:
Second, you have to adapt your models:
meeting.rb
client.rb
contact.rb
How to use:
You can read more up on polymorphic associations here: