2017-03-31 04:42:33 +11:00
|
|
|
# frozen_string_literal: true
|
2017-05-02 10:14:47 +10:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: imports
|
|
|
|
#
|
2018-04-23 19:29:17 +10:00
|
|
|
# id :bigint(8) not null, primary key
|
2017-05-02 10:14:47 +10:00
|
|
|
# type :integer not null
|
2017-07-13 11:12:25 +10:00
|
|
|
# approved :boolean default(FALSE), not null
|
2017-05-02 10:14:47 +10:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# data_file_name :string
|
|
|
|
# data_content_type :string
|
|
|
|
# data_file_size :integer
|
|
|
|
# data_updated_at :datetime
|
2018-04-23 19:29:17 +10:00
|
|
|
# account_id :bigint(8) not null
|
2017-05-02 10:14:47 +10:00
|
|
|
#
|
2017-03-31 04:42:33 +11:00
|
|
|
|
|
|
|
class Import < ApplicationRecord
|
2017-04-17 00:28:26 +10:00
|
|
|
FILE_TYPES = ['text/plain', 'text/csv'].freeze
|
|
|
|
|
2017-03-31 04:42:33 +11:00
|
|
|
self.inheritance_column = false
|
|
|
|
|
2018-01-20 06:56:47 +11:00
|
|
|
belongs_to :account
|
2017-03-31 04:42:33 +11:00
|
|
|
|
2017-04-17 00:28:26 +10:00
|
|
|
enum type: [:following, :blocking, :muting]
|
2017-03-31 04:42:33 +11:00
|
|
|
|
2017-04-17 00:28:26 +10:00
|
|
|
validates :type, presence: true
|
2017-03-31 04:42:33 +11:00
|
|
|
|
2018-02-26 11:31:44 +11:00
|
|
|
has_attached_file :data
|
2017-03-31 04:42:33 +11:00
|
|
|
validates_attachment_content_type :data, content_type: FILE_TYPES
|
2017-09-03 04:45:42 +10:00
|
|
|
validates_attachment_presence :data
|
2017-03-31 04:42:33 +11:00
|
|
|
end
|