Added user password hash relation

Necessary to aid in managing password hashes for users.

Milestone: minor
This commit is contained in:
Brooke Kuhlmann
2025-09-29 11:07:59 -06:00
parent a37906a4fc
commit bcb23ef1a2
+10
View File
@@ -0,0 +1,10 @@
# frozen_string_literal: true
module Terminus
module Relations
# The user password hash relation.
class UserPasswordHash < DB::Relation
schema :user_password_hash, infer: true
end
end
end