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

web_hook_log_archived.rb « hooks « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a1c8a44f5babbb59c099530d287e12e3658a8573 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

# This model is not intended to be used.
# It is a temporary reference to the old non-partitioned
# web_hook_logs table.
# 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 WebHookLogArchived < ApplicationRecord
  self.table_name = 'web_hook_logs_archived'
end