about summary refs log tree commit diff
path: root/app/models/custom_filter.rb
blob: a90b99c48794531f754202725c476c6d849e36c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true
# == Schema Information
#
# Table name: custom_filters
#
#  id         :bigint(8)        not null, primary key
#  account_id :bigint(8)
#  expires_at :datetime
#  phrase     :text             default(""), not null
#  created_at :datetime         not null
#  updated_at :datetime         not null
#

class CustomFilter < ApplicationRecord
  include Expireable
  include Redisable

  belongs_to :account

  validates :phrase, presence: true
end