22 lines
793 B
Ruby
22 lines
793 B
Ruby
# frozen_string_literal: true
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: ngword_histories
|
|
#
|
|
# id :bigint(8) not null, primary key
|
|
# uri :string not null
|
|
# target_type :integer not null
|
|
# reason :integer not null
|
|
# text :string not null
|
|
# keyword :string not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# count :integer default(0), not null
|
|
#
|
|
class NgwordHistory < ApplicationRecord
|
|
include Paginable
|
|
|
|
enum target_type: { status: 0, account_note: 1, account_name: 2 }, _suffix: :blocked
|
|
enum reason: { ng_words: 0, ng_words_for_stranger_mention: 1, hashtag_count: 2, mention_count: 3, stranger_mention_count: 4 }, _prefix: :within
|
|
end
|