Getting started with HCL declarative migrations for an SQLite 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
- macOS + Linux
- Homebrew
- Docker
- Windows
- Manual Installation
To download and install the latest release of the Atlas CLI, simply run the following in your terminal:
curl -sSf https://atlasgo.sh | sh
Get the latest release with Homebrew:
brew install ariga/tap/atlas
To pull the Atlas image and run it as a Docker container:
docker pull arigaio/atlas
docker run --rm arigaio/atlas --help
If the container needs access to the host network or a local directory, use the --net=host
flag and mount the desired
directory:
docker run --rm --net=host \
-v $(pwd)/migrations:/migrations \
arigaio/atlas migrate apply
--url "mysql://root:pass@:3306/test"
Download the latest release and move the atlas binary to a file location on your system PATH.
Warming up
To demonstrate the examples in the article, install the SQLite command-line tool on your host machine if it's not already installed. You can download it from the SQLite website at https://www.sqlite.org/download.html
Once SQLite is installed, you can create a new database file by running the following command:
sqlite3 example.db
Then, create an example customers
table in it by executing the following statement:
CREATE TABLE customers (
id INTEGER PRIMARY KEY,
first_name TEXT NOT NULL,
last_name TEXT 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 an output
in HCL format that represents your database schema in a simple, human-readable language.
This 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 "sqlite://example.db" > schema.hcl
schema "main" {}
table "customers" {
schema = schema.main
column "id" {
null = true
type = integer
}
column "first_name" {
null = false
type = text
}
column "last_name" {
null = false
type = text
}
primary_key {
columns = [column.id]
}
}
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.
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 "main" {}
table "customers" {
schema = schema.main
column "id" {
null = true
type = integer
}
column "first_name" {
null = false
type = text
}
column "last_name" {
null = false
type = text
}
primary_key {
columns = [column.id]
}
}
table "orders" {
schema = schema.main
column "id" {
null = true
type = integer
}
column "customer_id" {
null = false
type = integer
}
column "order_date" {
null = false
type = date
}
primary_key {
columns = [column.id]
}
foreign_key "fk1" {
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 "sqlite://example.db" \
--to "file://schema.hcl"
-- Planned Changes:
-- Create "orders" table
CREATE TABLE `orders` (`id` integer NULL, `customer_id` integer NOT NULL, `order_date` date NOT NULL, PRIMARY KEY (`id`), CONSTRAINT `fk1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`));
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 --url "sqlite://example.db"
table "customers" {
schema = schema.main
column "id" {
null = true
type = integer
}
column "first_name" {
null = false
type = text
}
column "last_name" {
null = false
type = text
}
primary_key {
columns = [column.id]
}
}
table "orders" {
schema = schema.main
column "id" {
null = true
type = integer
}
column "customer_id" {
null = false
type = integer
}
column "order_date" {
null = false
type = date
}
primary_key {
columns = [column.id]
}
foreign_key "fk1" {
columns = [column.customer_id]
ref_columns = [table.customers.column.id]
}
}
schema "main" {
}
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.
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.