Skip to content

Commit

Permalink
🐛 fix (repositories.sqlite-user): Using the 'userId' column name in t…
Browse files Browse the repository at this point in the history
…he Credentials table insertion query
  • Loading branch information
kevinmarquesp committed Jul 20, 2024
1 parent 70e96fa commit 7113175
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/repositories/sqlite_user_repository.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func (su SqliteUserRepository) CreateNewUser(id, name, username, email, password
INSERT
INTO Credentials
(id, password)
(userId, password)
VALUES
(?1, ?5);
`)
Expand Down

0 comments on commit 7113175

Please sign in to comment.