Files
Brooke Kuhlmann bf9de62285 Added user status relation
Necessary to provide low level access to the user status records.

Milestone: minor
2025-09-29 16:52:20 -06:00

11 lines
191 B
Ruby

# frozen_string_literal: true
module Terminus
module Relations
# The user status relation.
class UserStatus < DB::Relation
schema :user_status, infer: true
end
end
end