Deploy Schema Migration with Rollout Policy

Estimated: 30 mins

Bytebase offers a powerful GUI for schema migration deployments. This tutorial will show you how to use Bytebase to deploy schema migrations with features like SQL Review, custom approval, time scheduling, and more.

graph-4-steps

Bytebase offers Community, Pro and Enterprise Plans. Advanced plans unlock new capabilities of deploying schema migrations and this tutorial will walk you through them progressively.

Features covered

Preparation

  1. Make sure your Docker is running, and start the Bytebase Docker container with the following command:

    docker run --rm --init \
      --name bytebase \
      --publish 8080:8080 --pull always \
      --volume ~/.bytebase/data:/var/opt/bytebase \
      bytebase/bytebase:2.16.0
  2. Bytebase is running successfully in Docker, and you can visit it via localhost:8080. Register an admin account and it will be granted the workspace admin role automatically.

Level 1: Automatic rollout with SQL review (Community Plan)

  1. Go to Environments > Test and Environments > Prod, you'll see
    1. The Rollout policy is automatic. Unless there's some warning or error, the rollout will be automatically executed after the issue is created.
    2. SQL Review is enabled on Prod with a sample policy.

bb-env-rollout-automatic-test-prod

  1. Click SQL Review Sample Policy to go to SQL Review policy, there're three rules activated. Let's pay attention to Enforce NOT NULL constraints on columns rule, and we'll try to violate it.

bb-sql-review-sample-policy

  1. Go to Sample Project, click Edit Schema, choose both Test and Prod databases, and click Next. Paste the following SQL statements into Raw SQL, and click Preview issue.
ALTER TABLE "public"."employee"
    ADD COLUMN "country" text;
  1. SQL Review checks will dry run before the issue is created. Here let's create the issue regardless of the dry run result.
  2. After the issue is created, SQL Review will run automatically along with some other checks. You'll see there's a warning for the task on Prod.

bb-issue-warning-prod

bb-issue-sql-review-warning

  1. Click Edit, paste this SQL statement and click Save. Apply this change to all tasks. The SQL checks will run again, and you'll see the warning disappear and it will roll out automatically.
ALTER TABLE "public"."employee"
ADD COLUMN "country" text NOT NULL DEFAULT '';

bb-issue-done-free

  1. Click View change to see the diff or go to Change History to view all changes.

bb-issue-done-show-diff

bb-proj-change-list

Level 2: Manual rollout with dedicated roles and scheduled time (Pro Plan)

With Pro Plan, you'll get two additional features:

  • Manual rollout policy. You can specify multiple pre-defined roles to manually roll out the change.
  • Time scheduling. You can specify a particular time to roll out the change.

To simplify the process, we'll use 14-day enterprise trial here. Click the Start free trial to upgrade.

  1. Go to Environments > Prod, choose Manual rollout by dedicated roles and check all the roles. Click Update.

bb-env-prod-manual

  1. Go to Sample Project, click Edit Schema, choose both Test and Prod databases, and click Next. Paste the following SQL statements into Raw SQL, and click Preview issue.
ALTER TABLE "public"."employee"
    ADD COLUMN "city" text NOT NULL DEFAULT '';
  1. Click Create, and after Task checks runs, you'll see the SQL running on Test automatically but waiting to run on Prod.

bb-issue-prod-waiting

  1. Click Rollout to trigger directly or set a Rollout time.

bb-proj-set-rollout-time

Level 3: Manual rollout with custom approval (Enterprise Plan)

If you want the approval flow to be more dynamic based on the context like the type of SQL statements, the affected rows and etc, then you can configure custom approval flow.

Go to Instances and click Assign License for both instances. Without doing this, the enterprise plan required for custom approval won't be enabled on instances.

  1. Click Settings (the gear icon) > Security & Policy > Custom Approval. Choose Project Owner -> DBA as High Risk for DDL.

bb-custom-approval

  1. Click the related risk rules or Settings (the gear icon) > Security & Policy > Risk Center. Click Add rule. Set High Risk and DDL as The risk for the production environment is considered to be high.

bb-risk-center-add-rule

  1. Click Settings (the gear icon) and add a DBA account. Click it in the Active members list, and edit its password. You'll need this account later to do the approval.

  2. Go to Environments > Prod, you now unlock the third option for rollout policy Manual rollout by the last approver from the custom approval flow. Choose it.

bb-env-prod-manual-approval

  1. Go to Sample Project, click Edit Schema, choose both Test and Prod databases, and click Next. Paste the following SQL statements into Raw SQL, and click Preview issue.
ALTER TABLE "public"."employee"
    ADD COLUMN "district" text NOT NULL DEFAULT '';
  1. Create the issue and the approval flow is matched. Since it's in the pipeline, it will be brought forward to the Test stage to review earlier. Follow its order to approve. DBA will be the one to do the rollout.

bb-issue-custom-approval-waiting

Summary

You have now learned how to use Bytebase to deploy schema migration in a basic way. Bytebase also provides other advanced features for your interests:

  • GitOps - Observe Git code push events and trigger schema migration;
  • Batch changes - Change multiple databases in a single workflow;
  • Branching - Collaborate on schema changes using Git-like branching;
  • Changelist - Organize and apply changes sequentially, or export them for offline execution.

Join our Discord channel to discuss.

Edit this page on GitHub

Subscribe to Newsletter

By subscribing, you agree with Bytebase's Terms of Service and Privacy Policy.