Skip to content

Commit

Permalink
doc fix
Browse files Browse the repository at this point in the history
  • Loading branch information
anidotnet committed Jan 8, 2024
1 parent 8a56ba2 commit 233847c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion flutter-sdk/migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ order: 10
A migration is a set of changes to the schema that can be applied to a database. Migrations are used to keep the database schema up to date with the codebase. It contains a queue of instructions that are executed in order to update the database schema from one version to the next.

!!!primary
The migration is executed only once. If you want to execute the migration again, you need to change the schema version of the database.
The migration is executed only once for a specific schema version. If you want to execute the migration again, you need to change the schema version of the database.
!!!

For example, if you have a database with the schema version 1 and you want to update it to version 2, you need to apply the migration steps from version 1 and version 2.
Expand Down
2 changes: 1 addition & 1 deletion java-sdk/migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ order: 10
A migration is a set of changes to the schema that can be applied to a database. Migrations are used to keep the database schema up to date with the codebase. It contains a queue of instructions that are executed in order to update the database schema from one version to the next.

!!!primary
The migration is executed only once. If you want to execute the migration again, you need to change the schema version of the database.
The migration is executed only once for a specific schema version. If you want to execute the migration again, you need to change the schema version of the database.
!!!

For example, if you have a database with the schema version 1 and you want to update it to version 2, you need to apply the migration steps from version 1 and version 2.
Expand Down

0 comments on commit 233847c

Please sign in to comment.