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