Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ignorable_column.rb « concerns « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2b074c1921c25ac19c9997c0a8baf3b9469a4f44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# frozen_string_literal: true

# Module that can be included into a model to make it easier to ignore database
# columns.
#
# Example:
#
#     class User < ActiveRecord::Base
#       include IgnorableColumn
#
#       ignore_column :updated_at
#     end
#
module IgnorableColumn
  extend ActiveSupport::Concern

  module ClassMethods
    def columns
      super.reject { |column| ignored_columns.include?(column.name) }
    end

    def ignored_columns
      @ignored_columns ||= Set.new
    end

    def ignore_column(*names)
      ignored_columns.merge(names.map(&:to_s))
    end
  end
end