blob: 73be04d0eb0bef9064265d9c5f88156c1c6e187a (
plain)
1
2
3
4
5
6
7
8
|
class Import::Resource < ActiveRecord::Base
self.table_name = :import_resources
include IevInterfaces::Resource
belongs_to :import, class_name: Import::Base
has_many :messages, class_name: "ImportMessage", foreign_key: :resource_id
end
|