mirror of
https://github.com/archtechx/laravel-tips.git
synced 2025-12-12 13:24:03 +00:00
13 lines
No EOL
584 B
Markdown
13 lines
No EOL
584 B
Markdown
---
|
|
title: 'You can validate data at the database level'
|
|
tweet_id: '1505269891535818754'
|
|
thread_slug: weekly-thread-2022-11
|
|
author_username: tobias_petry
|
|
images:
|
|
- 'https://pbs.twimg.com/media/FN-JmJCXEAUCQjy.jpg'
|
|
created_at: 2022-03-19T19:48:03+00:00
|
|
slug: you-can-validate-data-at-the-database-level
|
|
---
|
|
⚡️ Database Tip
|
|
|
|
Your application will have bugs and any data stored may be corrupt forever. But with constraints on the data model, rules would have prevented saving incorrect data in the first place! Use them as a last frontier to make sure you always have valid data. |