aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/guitar.rb
blob: a1a32262725e4de478a6ffb847763c2660c2cdd1 (plain) (blame)
1
2
3
4
5
# frozen_string_literal: true
class Guitar < ActiveRecord::Base
  has_many :tuning_pegs, index_errors: true
  accepts_nested_attributes_for :tuning_pegs
end