summaryrefslogtreecommitdiff
path: root/app/models/hooks/web_hook_log_partitioned.rb
blob: b4b150afb6a1d518005a2f041e96bea4a43833ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

# This model is not yet intended to be used.
# It is in a transitioning phase while we are partitioning
# the web_hook_logs table on the database-side.
# Please refer to https://gitlab.com/groups/gitlab-org/-/epics/5558
# for details.
# rubocop:disable Gitlab/NamespacedClass: This is a temporary class with no relevant namespace
#  WebHook, WebHookLog and all hooks are defined outside of a namespace
class WebHookLogPartitioned < ApplicationRecord
  include PartitionedTable

  self.table_name = 'web_hook_logs_part_0c5294f417'
  self.primary_key = :id

  partitioned_by :created_at, strategy: :monthly
end