intra_app/app/models/i_task.rb
Nicolas Bally 3075c2ab63 suite
2019-05-20 22:35:16 +02:00

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