2017-07-09 13:41:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2010-07-26 15:12:36 -04:00
|
|
|
class Liquid < ActiveRecord::Base
|
2011-11-29 07:28:04 -05:00
|
|
|
self.table_name = :liquid
|
2013-03-12 05:23:08 -04:00
|
|
|
has_many :molecules, -> { distinct }
|
2010-07-26 15:12:36 -04:00
|
|
|
end
|