summaryrefslogtreecommitdiff
path: root/app/models/postgresql
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-09-16 18:11:32 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2021-09-16 18:11:32 +0000
commit78a62a7c7a773041dcb4fc733534c03c0be4c067 (patch)
tree9f933e98cc17c1c9b668428c2c4250f7f6b3ddc6 /app/models/postgresql
parent49769473ab2fc0471853ada294c2f9a66f25f048 (diff)
downloadgitlab-ce-78a62a7c7a773041dcb4fc733534c03c0be4c067.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/models/postgresql')
-rw-r--r--app/models/postgresql/detached_partition.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/postgresql/detached_partition.rb b/app/models/postgresql/detached_partition.rb
index 76b299ff9d4..12b48895e0c 100644
--- a/app/models/postgresql/detached_partition.rb
+++ b/app/models/postgresql/detached_partition.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
module Postgresql
- class DetachedPartition < ApplicationRecord
+ class DetachedPartition < ::Gitlab::Database::SharedModel
scope :ready_to_drop, -> { where('drop_after < ?', Time.current) }
end
end