-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc: add entry to the bc for db columns (#2221)
- Loading branch information
1 parent
22901dc
commit db0c2cb
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
docusaurus/docs/dev-docs/migration/v4-to-v5/breaking-changes/database-columns.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
title: Database columns | ||
description: Content types always have feature columns | ||
displayed_sidebar: devDocsMigrationV5Sidebar | ||
tags: | ||
- breaking changes | ||
- database | ||
- upgrade to Strapi 5 | ||
--- | ||
|
||
import Intro from '/docs/snippets/breaking-change-page-intro.md' | ||
import MigrationIntro from '/docs/snippets/breaking-change-page-migration-intro.md' | ||
import YesPlugins from '/docs/snippets/breaking-change-affecting-plugins.md' | ||
import NoCodemods from '/docs/snippets/breaking-change-not-handled-by-codemod.md' | ||
|
||
# Content types always have feature columns | ||
|
||
In Strapi 5, Content types always have document, publication and internationalization columns created in database. | ||
|
||
<Intro /> | ||
<YesPlugins /> | ||
<NoCodemods /> | ||
|
||
## Breaking change description | ||
|
||
**In Strapi 5** | ||
|
||
All the Content Types have a new `document_id` column. | ||
|
||
The `published_at` column is now always added. | ||
The `locale` column is now always added. | ||
|
||
<br /> |