Sha256: 02fb0789e3bff3327cdc8cc72089216d169d1a53440023bb84e68374fdfaaab2

Contents?: true

Size: 717 Bytes

Versions: 2

Compression:

Stored size: 717 Bytes

Contents

class EventImportResult < ActiveRecord::Base
  attr_accessible :event_id, :event_import_file_id, :body, as: :admin
  default_scope { order('event_import_results.id') }
  scope :file_id, proc{|file_id| where(event_import_file_id: file_id)}
  scope :failed, -> { where(event_id: nil) }

  belongs_to :event_import_file
  belongs_to :event

  validates_presence_of :event_import_file_id
end

# == Schema Information
#
# Table name: event_import_results
#
#  id                   :integer          not null, primary key
#  event_import_file_id :integer
#  event_id             :integer
#  body                 :text
#  created_at           :datetime         not null
#  updated_at           :datetime         not null
#

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
enju_event-0.1.17.pre23 app/models/event_import_result.rb
enju_event-0.1.17.pre22 app/models/event_import_result.rb