blob: 98f103be402a936974be1a230eeb52732a14bb07 (
plain)
1
2
3
4
5
6
7
8
|
class Export::Resource < ActiveRecord::Base
self.table_name = :export_resources
include IevInterfaces::Resource
belongs_to :export, class_name: Export::Base
has_many :messages, class_name: "ExportMessage", foreign_key: :resource_id
end
|