Action | Type | Resolved On |
|---|---|---|
| Unique Record | DB | 2025-12-22 |
This action addresses a database schema design issue where many tables lack unique constraints (keys). This can lead to duplicate records being created when users submit forms multiple times, either intentionally or due to network issues causing retry behavior.
By adding appropriate unique constraints to the database schema, we can prevent duplicate records from being inserted and ensure data integrity across the system.
Add project based primary key to make sure record uniqueness.
Implement the existance check before inserting new record.