aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/test/models/molecule.rb
blob: 7da08a85c4cbc4931a22319084ae77be246d2311 (plain) (tree)
1
2
3
4
5
6
7
8

                             


                                   

                                          
   
# frozen_string_literal: true

class Molecule < ActiveRecord::Base
  belongs_to :liquid
  has_many :electrons

  accepts_nested_attributes_for :electrons
end