|
|
|
|
|
by Tostino
579 days ago
|
|
I love using the database as the source of truth for data consistency, and constraining your data to only be allowed in your database as long as it's in a valid state. It's easy enough to replicate those constraints to the client if you want the client to do ahead of time validation, but your source of truth lives in the database... I wouldn't survive with SQLite. |
|
Completely agree that the DB should be the arbiter of validity. Constraints are a good thing.