mirror of
https://github.com/archtechx/laravel-tips.git
synced 2025-12-12 05:14:04 +00:00
15 lines
575 B
Markdown
15 lines
575 B
Markdown
---
|
|
title: 'You can validate JSON columns at database level'
|
|
tweet_id: '1545466000790892544'
|
|
thread_slug: weekly-thread-2022-27
|
|
author_username: tobias_petry
|
|
images:
|
|
- 'https://pbs.twimg.com/media/FW-NXH9X0AE4uSd.jpg'
|
|
created_at: 2022-07-08T17:53:02+00:00
|
|
slug: you-can-validate-json-columns-at-database-level
|
|
---
|
|
⚡️ Database Tip
|
|
|
|
Extending a traditional database schema with NoSQL-like JSON columns can make the schema more understandable. But you should also ensure these JSON documents conform to an expected schema!
|
|
|
|
https://sqlfordevs.com/json-schema-validation
|