Skip to content

Commit

Permalink
fix: subordinate statement metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
jcmelati committed Nov 27, 2024
1 parent 21e8440 commit c219888
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ findByAccountId:
SELECT * FROM Subordinate WHERE account_id = ? AND deleted_at IS NULL;

findByAccountIdAndSubordinateId:
SELECT * FROM Subordinate WHERE id = ? AND account_id = ? AND deleted_at IS NULL;
SELECT * FROM Subordinate WHERE account_id = ? AND id = ? AND deleted_at IS NULL;

findByAccountIdAndIdentifier:
SELECT * FROM Subordinate WHERE account_id = ? AND identifier = ? AND deleted_at IS NULL;
Expand Down

0 comments on commit c219888

Please sign in to comment.