aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/active_record/model/templates/model.rb
blob: fb337d10e6f66389512a0afd08df54127878402c (plain) (blame)
1
2
3
4
5
class <%= class_name %> < <%= options[:parent] %>
<% attributes.select {|attr| attr.reference? }.each do |attribute| -%>
  belongs_to :<%= attribute.name %>
<% end -%>
end