Skip to main content

Getting started with SQL 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

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, 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 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.sql

atlas schema inspect \
--url "sqlite://example.db" \
--format "{{ sql . }}" > schema.sql
schema.sql
-- create "customers" table
-- create "customers" table
CREATE TABLE `customers` (
`id` integer NULL,
`first_name` text NOT NULL,
`last_name` text NOT NULL,
PRIMARY KEY (`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 SQL 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 SQL-based schema inspection with Atlas. For those opting to use an HCL schema, read the documentation here.

Example

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

schema.sql
-- create "customers" table
CREATE TABLE `customers` (
`id` integer NULL,
`first_name` text NOT NULL,
`last_name` text NOT NULL,
PRIMARY KEY (`id`)
);

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) ON UPDATE NO ACTION ON DELETE NO ACTION
);

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 SQL 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.sql" \
--dev-url "sqlite://file?mode=memory"
The role of the Dev Database

Atlas loads the desired state by executing the SQL files onto the provided dev database, compares it against the database current state by inspecting its schema and writes a migration plan for moving from the current state to the desired state.

-- 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`) ON UPDATE NO ACTION ON DELETE NO ACTION);
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" \
--format "{{ sql . }}"
-- create "customers" table
CREATE TABLE `customers` (
`id` integer NULL,
`first_name` text NOT NULL,
`last_name` text NOT NULL,
PRIMARY KEY (`id`)
);

-- 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`) ON UPDATE NO ACTION ON DELETE NO ACTION
);

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, 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.