10 lines
226 B
Ruby
10 lines
226 B
Ruby
# require_association 'customer'
|
|
|
|
class MailPref < ActiveRecord::Base
|
|
belongs_to :customer
|
|
|
|
# def MailPref.find_by_customer(customer_id)
|
|
# find :first, :conditions => (["customer_id = #{customer_id}"])
|
|
# end
|
|
end
|