diff --git a/app/relations/user_password_hash.rb b/app/relations/user_password_hash.rb new file mode 100644 index 00000000..6d415311 --- /dev/null +++ b/app/relations/user_password_hash.rb @@ -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