No project description provided
Project description
DRAFT
atlas-provider-sqlalchemy
Atlas provider for sqlalchemy
Run
From the root directory of your project run:
pipx run --spec git+https://github.com/noamtamir/atlas-provider-sqlalchemy.git atlas-provider-sqlalchemy --dialect dialect
dialect: postgresql|mysql|oracle|sqlite|mssql
(or any other dialect supported by sqlalchemy)
Optionally add --path path/to/models
if you need to run it from a different directory. All paths are relative to the directory this is run in.
atlas-provider-sqlalchemy
Load SQLAlchemy models into an Atlas project.
Use-cases
- Declarative migrations - use a Terraform-like
atlas schema apply --env sqlalchemy
to apply your SQLAlchemy schema to the database. - Automatic migration planning - use
atlas migrate diff --env sqlalchemy
to automatically plan a migration from the current database version to the 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:
pipx install git+https://github.com/noamtamir/atlas-provider-sqlalchemy.git
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",
"--dialect", "mysql", // mysql | mariadb | postgresql | sqlite | mssql
]
}
env "sqlalchemy" {
src = data.external_schema.sqlalchemy.url
dev = "docker://mysql/8/dev"
}
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.py
with the following contents:
# import all models
from models import User, Task;
...
const load_models = require("@ariga/atlas-provider-sequelize");
print(load_models("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.py",
"mysql"
]
}
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 sequelize -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 Sequelize schema.
atlas migrate diff --env sequelize
Typescript
for typescript support, see the ts-atlas-provider-sequelize README.
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
File details
Details for the file atlas_provider_sqlalchemy-0.1a0.tar.gz
.
File metadata
- Download URL: atlas_provider_sqlalchemy-0.1a0.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.1 CPython/3.11.2 Darwin/22.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b8ea553c5ef576a602a0e5b15e0a858908e94af1d1f07412f345954056cb018 |
|
MD5 | 9f790ad0b59e4ba7f884bc73fefb32df |
|
BLAKE2b-256 | 3812bfe350c347a4e094e71e6cd2b85e4cb046ae244b1efc85e571281e7fb5ed |
File details
Details for the file atlas_provider_sqlalchemy-0.1a0-py3-none-any.whl
.
File metadata
- Download URL: atlas_provider_sqlalchemy-0.1a0-py3-none-any.whl
- Upload date:
- Size: 4.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.1 CPython/3.11.2 Darwin/22.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fabda123ad4a0d372ce0767673d0b201a59e6871ca29bc44dd51b024926f3b81 |
|
MD5 | b309f32cd1c73283984d5627aaf19ad6 |
|
BLAKE2b-256 | 7cfacd5ba4e85e434fa35950164226b8a34a1fae8decc6b57123af691c8ec54a |