2021-08-10 20:10:03 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Postgresql
|
2021-09-16 14:11:32 -04:00
|
|
|
class DetachedPartition < ::Gitlab::Database::SharedModel
|
2021-08-10 20:10:03 -04:00
|
|
|
scope :ready_to_drop, -> { where('drop_after < ?', Time.current) }
|
|
|
|
end
|
|
|
|
end
|