references

一个帮助工具references,用来指明表的外键关系。
create_table :products do |t| t.references :category end
上面的代码会在products表中添加一个外键字段category_id。

create_table :products do |t| t.references :attachment, :polymorphic => {:default =>'Photo'} end

上面的代码不仅会在products表中添加外键字段attachment_id,还会添加attachment_type字段,string类型,默认值是Photo。

你可能感兴趣的:(references)