4 lines
139 B
4 lines
139 B
2 years ago
|
class LocationDeactivationPeriod < ApplicationRecord
|
||
|
scope :deactivations_without_reactivation, -> { where(reactivation_date: nil) }
|
||
|
end
|