2

我有一组记录,我希望每个用户从 item_templates 表中开始。然后,在 items 表中,我有 user_id 和每个项目。所以,基本上模式看起来像;

item_templates 表:

  • 项目代码
  • 项目名称
  • ...一堆其他属性

物品表:

  • 用户身份
  • 项目代码
  • 项目名称
  • ...一堆其他属性

每次创建新用户时,我都想在项目表中为该用户复制模板中的项目。有什么简单的方法可以避免对所有属性进行编码以从 item_templates 复制到项目?

4

1 回答 1

4
item.update_attributes(template.attributes)
于 2012-05-12T17:22:47.883 回答