10 lines
173 B
Ruby
10 lines
173 B
Ruby
class ITask < ActiveRecord::Base
|
|
belongs_to :i_website
|
|
belongs_to :admin
|
|
|
|
has_one :p_customer, :through => :i_website
|
|
|
|
validates :name, :presence => true
|
|
|
|
end
|