Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/blog/database-version-control.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Database version control often relies on migration scripts, which are code files

By keeping a history of changes, version control enables controlled deployment of database updates. If a problem occurs, it allows teams to roll back to a previous version of the database schema and associated data. Bytebase provides the following rollback options:

- Data rollback. Using undo logs like MySQL binlog to roll back data changes.
- Data rollback. Using undo logs like MySQL binlog to revert data changes.
- Restore from backup and Point-in-time-Recovery (PITR). You can instruct Bytebase to take manual or periodic backups and restore from them.
- Schema synchronization. You can synchronize one database schema to another. Bytebase can calculate the difference and apply the change.

Expand Down
2 changes: 1 addition & 1 deletion mintlify/change-database/change-history.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ The history is listed under the database page

## Rollback schema

You can also select a DDL and Baseline history version and roll back to that version.
You can also select a DDL and Baseline history version and rollback to that version.

![version-rollback](/content/docs/change-database/change-workflow/version-rollback.webp)
2 changes: 1 addition & 1 deletion mintlify/change-database/rollback-schema-changes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Schema Rollback
---

Bytebase records the history for each schema change. To roll back a schema change:
Bytebase records the history for each schema change. To rollback a schema change:

- You can use
[Schema Synchronization](/change-database/synchronize-schema) to synchronize the database to a
Expand Down
2 changes: 1 addition & 1 deletion mintlify/docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
]
},
{
"group": "Roll back",
"group": "Rollback",
"pages": [
"change-database/rollback-data-changes",
"change-database/rollback-schema-changes"
Expand Down
4 changes: 2 additions & 2 deletions mintlify/tutorials/how-to-synchronize-database-schemas.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Use this for:

## Case 3 - Rollback to previous schema versions

Use schema synchronization to roll back databases to any previous version from their migration history.
Use schema synchronization to rollback databases to any previous version from their migration history.

1. Navigate to **Sync Schema** and select `hr_test` as the source database.

Expand All @@ -106,7 +106,7 @@ You've learned how to:

- Synchronize schemas to new databases
- Propagate changes across multiple environments
- Roll back to previous schema versions
- Rollback to previous schema versions

## Next steps

Expand Down