aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/export/message.rb
blob: b64b524acc3bd5a12f7f9e312a727037d9bb630e (plain)
1
2
3
4
5
6
7
8
class Export::Message < ActiveRecord::Base
  self.table_name = :export_messages

  include IevInterfaces::Message

  belongs_to :export, class_name: Export::Base
  belongs_to :resource, class_name: Export::Resource
end