mirror of
https://github.com/usetrmnl/terminus.git
synced 2026-08-13 14:29:27 -07:00
Necessary to provide low level access to the user status records. Milestone: minor
11 lines
191 B
Ruby
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
|