Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sjaanus committed Jan 25, 2024
1 parent 3b2a362 commit bc5c32d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ If breaking changes are inevitable, use the "expand/contract" pattern:
- Carry out all migrations in **separate pull requests (PRs)** and monitor them closely during deployment.

### Primary Key Requirement for New Tables
- **Include a primary key** in all new tables to ensure data integrity, efficient data retrieval, and support table relationships.
- Tables without primary keys should have a **compelling justification**.
- All new tables should have a primary key to guarantee data integrity, facilitate efficient querying, and enable the establishment of foreign key relationships with other tables.


Following these guidelines reduces the risk of errors and compatibility issues during DB schema changes, enhancing stability and reliability in software development.

0 comments on commit bc5c32d

Please sign in to comment.