blob: 5d0f5c8625451e7c5ab38465307ff101df184afe (
plain)
1
2
3
4
5
6
7
|
class ImportMessage < ActiveRecord::Base
belongs_to :import
belongs_to :resource, class_name: ImportResource
enum criticity: [:info, :warning, :error]
validates :criticity, presence: true
end
|