Migrations 1685000001000-add-currency-and-location-fields-to-users.ts and 1710000000000-AddTimezoneLocalePreferences.ts add country, country_code, preferred_currency, city, currency, and timezone columns to users, but User (src/users/entities/user.entity.ts) declares none of them.
Consequences:
Fix: either declare the columns on the User entity (with matching names/types) or add a migration to drop them if they're truly unused.
Migrations
1685000001000-add-currency-and-location-fields-to-users.tsand1710000000000-AddTimezoneLocalePreferences.tsaddcountry,country_code,preferred_currency,city,currency, andtimezonecolumns tousers, butUser(src/users/entities/user.entity.ts) declares none of them.Consequences:
synchronizein a non-production env would actually drop themFix: either declare the columns on the User entity (with matching names/types) or add a migration to drop them if they're truly unused.