Files
sx-fc/app/models/membership_action.rb
2019-02-08 14:07:18 +06:30

4 lines
93 B
Ruby
Executable File

class MembershipAction < ApplicationRecord
scope :active, -> { where(is_active: true) }
end