Skip to main content

Getting started with HCL declarative migrations for a MySQL schema

Introduction

Atlas makes it easy to manage your database using the declarative migrations workflow. Declarative migrations focus on describing the desired state of the database and allow the migration engine to plan and execute the necessary actions to reach that state.

In this quickstart guide, we will go through the three essential steps for using Atlas to manage your database schema: inspecting your database, authoring the desired changes, and applying those changes.

Installing Atlas

To download and install the latest release of the Atlas CLI, simply run the following in your terminal:

curl -sSf https://atlasgo.sh | sh

Warming up

To demonstrate the examples in the article, let's start a docker container with an example database and create a table in it.

Use the following command to run a MySQL Docker container:

docker run --name atlas-demo -e MYSQL_ROOT_PASSWORD=pass -e MYSQL_DATABASE=example -p 3306:3306 -d mysql:latest

Once the container is running, you can connect to the MySQL server using the command below:

docker exec -it atlas-demo mysql -ppass --database=example

Once you're connected, you can create a table in it by running the following command:

CREATE TABLE customers (
id INT PRIMARY KEY AUTO_INCREMENT,
first_name VARCHAR(255) NOT NULL,
last_name VARCHAR(255) NOT NULL
);

Step 1: Inspecting the database

Before planning any changes to your database, it can be useful to know what your database schema looks like. To do this, you can use the atlas schema inspect command to inspect your database. This command generates a file that represents your database schema, which can be used as a starting point for making changes.

Usage

atlas schema inspect [flags]

Example

The following command will inspect the current state of the schema example and store it in a file named schema.hcl

atlas schema inspect --url "mysql://root:pass@localhost:3306/example" > schema.hcl
schema.hcl
schema "example" {}

table "customers" {
schema = schema.example
column "id" {
null = false
type = int
auto_increment = true
}
column "first_name" {
null = false
type = varchar(255)
}
column "last_name" {
null = false
type = varchar(255)
}
primary_key {
columns = [column.id]
}
}
info

To learn more about inspecting schema with Atlas in variety of use cases, visit the documentation here

Step 2: Planning a change

Once you have inspected your database, the next step is to plan a change. This is done by modifying the HCL file in a way that it defines the desired state of your schema. The file should include the changes you want to make to your database, such as creating tables, columns, or indexes.

info

In this article, we will be focusing on HCL-based schema inspection with Atlas. For those opting to use SQL schema, refer to the documentation here.

Example

Let’s add the following table definition to the HCL schema file that we previously created with the atlas schema inspect command:

schema.hcl
schema "example" {}

table "customers" {
schema = schema.example
column "id" {
null = false
type = int
auto_increment = true
}
column "first_name" {
null = false
type = varchar(255)
}
column "last_name" {
null = false
type = varchar(255)
}
primary_key {
columns = [column.id]
}
}

table "orders" {
schema = schema.example
column "id" {
null = false
type = int
auto_increment = true
}
column "customer_id" {
null = false
type = int
}
column "order_date" {
null = false
type = date
}
primary_key {
columns = [column.id]
}
foreign_key "customer_id_fk" {
columns = [column.customer_id]
ref_columns = [table.customers.column.id]
}
}

Step 3: Applying the change

The final step is to apply the change to your database. To do this, simply run the atlas schema apply command. This command will compare the current state of your database to the desired state defined in your HCL file and make the necessary changes.

Usage

atlas schema apply [flags]

Example

Let’s apply the changes we created in Step 2 using the following command:

atlas schema apply \
--url "mysql://root:pass@localhost:3306/example" \
--to "file://schema.hcl"
-- Planned Changes:
-- Create "orders" table
CREATE TABLE `example`.`orders` (`id` int NOT NULL AUTO_INCREMENT, `customer_id` int NOT NULL, `order_date` date NOT NULL, PRIMARY KEY (`id`), INDEX `customer_id_fk` (`customer_id`), CONSTRAINT `customer_id_fk` FOREIGN KEY (`customer_id`) REFERENCES `example`.`customers` (`id`) ON UPDATE NO ACTION ON DELETE NO ACTION) CHARSET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
Use the arrow keys to navigate: ↓ ↑ → ←
? Are you sure?:
▸ Apply
Abort

Selecting Apply will apply the changes to the database.

You can inspect the latest state of the database again and verify that the changes have been applied by re-running the atlas schema inspect command:

atlas schema inspect -u "mysql://root:pass@localhost:3306/example"
table "customers" {
schema = schema.example
column "id" {
null = false
type = int
auto_increment = true
}
column "first_name" {
null = false
type = varchar(255)
}
column "last_name" {
null = false
type = varchar(255)
}
primary_key {
columns = [column.id]
}
}
table "orders" {
schema = schema.example
column "id" {
null = false
type = int
auto_increment = true
}
column "customer_id" {
null = false
type = int
}
column "order_date" {
null = false
type = date
}
primary_key {
columns = [column.id]
}
foreign_key "orders_ibfk_1" {
columns = [column.customer_id]
ref_columns = [table.customers.column.id]
on_update = NO_ACTION
on_delete = NO_ACTION
}
index "orders_ibfk_1" {
columns = [column.customer_id]
}
}
schema "example" {
charset = "utf8mb4"
collate = "utf8mb4_0900_ai_ci"
}

Great! Our changes have been successfully applied to the example schema.

Conclusion

By following the steps above, you can inspect the current state of the database, make changes to the schema definition file and apply those changes to the database with confidence.

The declarative migration is a flexible way to manage your database schema. It allows you to define your desired state in a simple, human-readable language, and then automatically apply those changes to your database. This can save you time and effort, and also reduce the risk of errors or inconsistencies in your database schema.

info

Atlas supports both Declarative and Versioned workflows for managing database schemas. The choice between the two depends on your requirements. To understand the difference and choose the best option for you, visit the documentation on Declarative vs Versioned workflow here.

Need More Help?

Join the Ariga Discord Server for early access to features and the ability to provide exclusive feedback that improves your Database Management Tooling.

Sign up to our newsletter to stay up to date about Atlas, and the cloud platform Atlas Cloud.