Update all Sequelize model imports throughout the codebase to reference db/models/index.ts instead of importing individual model files directly (e.g., db/models/user.ts).
Importing from db/models/index.ts ensures all models are fully initialized and all associations are defined. Directly importing an individual model file may bypass the centralized association wiring, leading to missing methods.