Description
Currently, the application uses synchronize: true for ease of development. Before deploying to a production environment, this must be changed to false to prevent accidental data loss. Also need to consider implementing a case-insensitive unique constraint on the users.email column using CITEXT or a lower() index, as suggested in PR #1.
Acceptance Criteria
Description
Currently, the application uses
synchronize: truefor ease of development. Before deploying to a production environment, this must be changed tofalseto prevent accidental data loss. Also need to consider implementing a case-insensitive unique constraint on the users.email column using CITEXT or a lower() index, as suggested in PR #1.Acceptance Criteria
synchronize: falsein the production database configuration.