Add user names support: add first_name/last_name to users table and regenerate database queries

This commit is contained in:
2026-01-23 21:27:08 -05:00
parent 7c89e9f214
commit f4e8c0d983
5 changed files with 74 additions and 18 deletions
+1
View File
@@ -41,6 +41,7 @@ type Querier interface {
UpdatePassword(ctx context.Context, arg UpdatePasswordParams) error
UpdateReadingProgress(ctx context.Context, arg UpdateReadingProgressParams) (ReadingProgress, error)
UpdateScanSettings(ctx context.Context, arg UpdateScanSettingsParams) error
UpdateUserProfile(ctx context.Context, arg UpdateUserProfileParams) error
UpdateUserTheme(ctx context.Context, arg UpdateUserThemeParams) error
UpdateUsername(ctx context.Context, arg UpdateUsernameParams) error
}