You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(api): align user_app_settings schema with model
The `user_app_settings` table incorrectly defined the `language` column as `JSONB`, while the `UserAppSettings` model correctly defines it as a `String`. This caused a crash during database seeding when trying to call `.toJson()` on a String.
This change corrects the `language` column type to `TEXT` in the schema and updates the seeding logic to pass the language as a simple string, aligning the database with the data model and resolving the startup error.
0 commit comments