Deploy Schema Migration with Bytebase API

Estimated: 30 mins

Bytebase is a database DevOps and CI/CD Tool for Developer, DBA and Platform Engineering teams.

It provides an intuitive GUI to manage database schema changes. On the other hand, for some teams, they may want to integrate Bytebase into their existing DevOps platform. This requires calling the Bytebase API.

before-after

In this tutorial, you will begin by creating a schema change within the Bytebase console. Then, you will proceed to run an external sample application that utilizes the API to create a similar change.

By following the step-by-step instructions provided, you will have the opportunity to explore and experiment with the Bytebase API. This will give you a practical understanding of how to incorporate it into your own application.

This tutorial code repository is at https://github.com/bytebase/api-example/issue-creation

Prerequisites

  1. Docker installed
  2. Node.js >= v18

Start Bytebase

Make sure your Docker daemon is running. Copy and paste the commands to start Bytebase.

docker run --rm --init \
  --name bytebase \
  --publish 8080:8080 --pull always \
  --volume ~/.bytebase/data:/var/opt/bytebase \
  bytebase/bytebase:2.22.3

Bytebase is now running via Docker, and you can access it via localhost:8080. Register the first admin account which will be granted Workspace Admin.

Create Service Account

  1. Log in as the admin user, and go to Security & Policy > Users & Groups. Click + Add User, fill in with api-example, choose the DBA role that is sufficient for this tutorial and click Confirm. service-account-create

  2. Find the newly created service account and click on Copy Service Key. We will use this token to authenticate the API calls. service-account-key

Create a schema change in Bytebase Console

Let's first review how to create a schema change from console directly.

  1. Stay in Bytebase console, go to Sample Project. Click the checkbox for hr_prod and click Edit Schema.

  2. Switch Raw SQL, paste the following SQL statement and click Preview issue.

    CREATE TABLE test_from_console (
      id integer NOT NULL
    );
  3. Click Create, after the automatic checks are done, it'll automatically roll out the change. The issue will become Done.

Create a schema change via Bytebase API

Below is an example app demonstrating the following APIs:

  • List all projects
  • List all database under a project
  • Create a schema change issue in the project
  • Get the created issue status.

  1. Go to Bytebase API Example repo and clone it.

  2. Copy env-template.local to .env.local.Update the variables.

    • NEXT_PUBLIC_BB_URL: http://localhost:8080
    • NEXT_PUBLIC_BB_SERVICE_ACCOUNT: api-example
    • NEXT_PUBLIC_BB_SERVICE_KEY: service key copied in Step 2
  3. Run the following commands to start the sample application.

    pnpm i && pnpm dev
  4. Open the application in your browser, you'll see the following page. sample-empty

  5. Choose Sample Project, then hr_prod, input the following SQL and click Create New Issue.

    CREATE TABLE test_from_api (
      id integer NOT NULL
    );
  6. The issue will be created and you'll see the following page. sample-open

  7. Click the link View issue xxx in Bytebase[OPEN] to see the issue in Bytebase Console. You'll notice the issue rolls out automatically and becomes Done. bb-issue-from-api

  8. Go back to the sample application, and click Refresh status. You'll see the status has changed from [OPEN] to [DONE]. sample-done

  9. For additional information about the example application, refer to the README in its corresponding GitHub repository.

Summary

Congratulations! You've successfully created a schema change via Bytebase API. In similar ways, you could integrate Bytebase API into your existing DevOps platform to automate your schema change process, and benefit Bytebase features such as SQL Review, Custom Approval and Schema Drift Detection.

Edit this page on GitHub

Subscribe to Newsletter

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