Skip to main content

Load sqlalchemy models into an Atlas project.

Project description

atlas-provider-sqlalchemy

Use Atlas with SQLAlchemy to manage your database schema as code. By connecting your SQLAlchemy models to Atlas, you can define and edit your schema directly in Python, and Atlas will automatically plan and apply database schema migrations for you, eliminating the need to write migrations manually.

Atlas brings automated CI/CD workflows to your database, along with built-in support for testing, linting, schema drift detection, and schema monitoring. It also allows you to extend SQLAlchemy with advanced database objects such as triggers, row-level security, and custom functions that are not supported natively.

Use-cases

  1. Declarative migrations - Use the Terraform-like atlas schema apply --env sqlalchemy command to apply your SQLAlchemy schema to the database.
  2. Automatic migration planning - Use atlas migrate diff --env sqlalchemy to automatically plan database schema changes and generate a migration from the current database version to the desired version defined by your SQLAlchemy schema.

Installation

Install Atlas from macOS or Linux by running:

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

See atlasgo.io for more installation options.

Install the provider by running:

# The Provider works by importing your SQLAlchemy models and extracting the schema from them.
# Therefore, you will need to run the provider from within your project's Python environment.
pip install atlas-provider-sqlalchemy

Standalone

If all of your SQLAlchemy models exist in a single package, you can use the provider directly to load your SQLAlchemy schema into Atlas.

In your project directory, create a new file named atlas.hcl with the following contents:

data "external_schema" "sqlalchemy" {
  program = [
    "atlas-provider-sqlalchemy",
    "--path", "./path/to/models",
    "--dialect", "mysql" // mariadb | postgresql | sqlite | mssql
  ]
}

env "sqlalchemy" {
  src = data.external_schema.sqlalchemy.url
  dev = "docker://mysql/8/dev"
  migration {
    dir = "file://migrations"
  }
  format {
    migrate {
      diff = "{{ sql . \"  \" }}"
    }
  }
}

As Python Script

If you want to use the provider as a python script, you can use the provider as follows:

Create a new file named load_models.py with the following contents:

# import all models
from models import User, Task
from atlas_provider_sqlalchemy.ddl import print_ddl
print_ddl("mysql", [User, Task])

Next, in your project directory, create a new file named atlas.hcl with the following contents:

data "external_schema" "sqlalchemy" {
    program = [
        "python",
        "load_models.py"
    ]
}

env "sqlalchemy" {
  src = data.external_schema.sqlalchemy.url
  dev = "docker://mysql/8/dev"
  migration {
    dir = "file://migrations"
  }
  format {
    migrate {
      diff = "{{ sql . \"  \" }}"
    }
  }
}

Usage

Once you have the provider installed, you can use it to apply your SQLAlchemy schema to the database:

Apply

You can use the atlas schema apply command to plan and apply a migration of your database to your current SQLAlchemy schema. This works by inspecting the target database and comparing it to the SQLAlchemy schema and creating a migration plan. Atlas will prompt you to confirm the migration plan before applying it to the database.

atlas schema apply --env sqlalchemy -u "mysql://root:password@localhost:3306/mydb"

Where the -u flag accepts the URL to the target database.

Diff

Atlas supports a version migration workflow, where each change to the database is versioned and recorded in a migration file. You can use the atlas migrate diff command to automatically generate a migration file that will migrate the database from its latest revision to the current SQLAlchemy schema.

atlas migrate diff --env sqlalchemy 

Supported Databases

The provider supports the following databases:

  • MySQL
  • MariaDB
  • PostgreSQL
  • SQLite
  • Microsoft SQL Server

FAQ

How to include schema creation in the migration?

Sometimes your tables may not reside in the default schema, and you may want to create the schema as part of the migration.

you can utilize composite schemas to add custom DDL in addition to the SQLAlchemy schema.

change your atlas.hcl like this:

data "external_schema" "sqlalchemy" {
  program = [
    "atlas-provider-sqlalchemy",
    "--path", "./path/to/models",
    "--dialect", "postgresql"
  ]
}

data "composite_schema" "app" {
    # Create the test schema first
    schema "public" {
        url = "file://schema.sql"
    }
   # Next, load the sqlalchemy models.
    schema "public" {
        url = data.external_schema.sqlalchemy.url
    }
}

env "sqlalchemy" {
  src = data.composite_schema.app.url
  dev = "docker://postgres/16/dev"
  migration {
    dir = "file://migrations"
  }
  format {
    migrate {
      diff = "{{ sql . \"  \" }}"
    }
  }
}

and create a schema.sql file with the following contents (change the schema name as needed):

CREATE SCHEMA IF NOT EXISTS test;

Credit

The code in this repository is based on noamtamir/atlas-provider-sqlalchemy.

Issues

Please report any issues or feature requests in the ariga/atlas repository.

License

This project is licensed under the Apache License 2.0.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

atlas_provider_sqlalchemy-0.4.0.tar.gz (10.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

atlas_provider_sqlalchemy-0.4.0-py3-none-any.whl (11.9 kB view details)

Uploaded Python 3

File details

Details for the file atlas_provider_sqlalchemy-0.4.0.tar.gz.

File metadata

  • Download URL: atlas_provider_sqlalchemy-0.4.0.tar.gz
  • Upload date:
  • Size: 10.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.4 CPython/3.11.0 Linux/6.11.0-1018-azure

File hashes

Hashes for atlas_provider_sqlalchemy-0.4.0.tar.gz
Algorithm Hash digest
SHA256 3ce2b7859367784daa87f29d5dedfbfa9066f733874720dd9656c3d5a38000b3
MD5 2318b21b9ffb4eb40e4c83068537d603
BLAKE2b-256 cf5f49a2bfefd671f4e9f297dbf9c7a3e5455980fac118ee60580c06dfd7eea7

See more details on using hashes here.

File details

Details for the file atlas_provider_sqlalchemy-0.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for atlas_provider_sqlalchemy-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ca623c65e36b19e378cc085a0798cd0dae0dbcefa58bbbe24a354dce8ea87fb0
MD5 ca64f8ee4c8bc94ccd6632f4f693178a
BLAKE2b-256 2ef2904c2df2e2412611db8cdda00a3258785fb8f84e4b550d9dc22523e95bee

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page