No project description provided
Project description
atlas-provider-django
Use Atlas with Django to manage your database schema as code. By connecting your Django models to Atlas, you can define and edit your schema directly in Python. Atlas will then 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 Django with advanced database objects such as triggers, row-level security, and custom functions that are not supported natively.
Use-cases
- Declarative migrations - Use the Terraform-like
atlas schema apply --env djangocommand to apply your Django schema to the database. - Automatic migration planning - Use
atlas migrate diff --env djangoto automatically plan database schema changes and generate a migration from the current database version to the desired version defined by your Django schema.
Installation
Install Atlas for macOS or Linux by running:
curl -sSf https://atlasgo.sh | sh
See atlasgo.io for more installation options.
Install the provider by running:
pip install atlas-provider-django
Configuration
Add the provider to your Django project's INSTALLED_APPS in settings.py:
INSTALLED_APPS = [
...,
'atlas_provider_django',
...
]
In your project directory, create a new file named atlas.hcl with the following contents:
data "external_schema" "django" {
program = [
"python",
"manage.py",
"atlas-provider-django",
"--dialect", "mysql" // mariadb | postgresql | sqlite | mssql
// if you want to only load a subset of your app models, you can specify the apps by adding
// "--apps", "app1", "app2", "app3"
]
}
env "django" {
src = data.external_schema.django.url
dev = "docker://mysql/8/dev"
migration {
dir = "file://migrations"
}
format {
migrate {
diff = "{{ sql . \" \" }}"
}
}
}
Usage
Inspect
You can use the atlas schema inspect command to visualize your Django schema in Atlas Cloud.
atlas schema inspect -w --env django --url env://src
Apply
You can use the atlas schema apply command to plan and apply a migration of your database to your current Django schema.
This works by inspecting the target database and comparing it to the Django Apps models and creating a migration plan.
Atlas will prompt you to confirm the migration plan before applying it to the database.
atlas schema apply --env django -u "mysql://root:password@localhost:3306/mydb"
Where the -u flag accepts the URL to the
target database.
Diff
Atlas supports a versioned migrations
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 Django schema.
atlas migrate diff --env django
Supported Databases
The provider supports the following databases:
- MySQL
- MariaDB
- PostgreSQL
- SQLite
- Microsoft SQL Server
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file atlas_provider_django-0.2.4.tar.gz.
File metadata
- Download URL: atlas_provider_django-0.2.4.tar.gz
- Upload date:
- Size: 9.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.13.1 Linux/6.11.0-1015-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de33aa8c54782c81c1b2bdd6c565b97835a51cac02b2a7e4a8a1c7eb96b1e3bd
|
|
| MD5 |
91189c5cfa1d535211cb4eb8a3e0b62e
|
|
| BLAKE2b-256 |
9291ced8a924e26aecd124fb2cce61e8b173ea83c9631cbebe86a6bac38d174b
|
File details
Details for the file atlas_provider_django-0.2.4-py3-none-any.whl.
File metadata
- Download URL: atlas_provider_django-0.2.4-py3-none-any.whl
- Upload date:
- Size: 11.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.13.1 Linux/6.11.0-1015-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9d7a5c10d43cd6279101c12713611433373d9b711702be5151d3f5d558b73913
|
|
| MD5 |
45c9571fef1c8f934f962b672326bfce
|
|
| BLAKE2b-256 |
63609be47b430d35417e381890773f7cedb3f564ecd17702ba2d88d18e73792f
|