Flexible version control for databases through SQL migrations. Supports embedded and CLI workflows for MS-SQL, MariaDB, MySQL, PostgreSQL and SQLite.
This project is fully documented, applies fuzz tests in some targets and doesn't make use of expect
, panic
, unsafe
or unwrap
.
The CLI application expects a configuration file that contains a set of paths where each path is a directory with multiple migrations.
ini
migrations/1__initial
migrations/2__create_post
Each provided migration and group must contain an unique version and a name summarized by the following structure:
txt
migrations
+-- 1__initial (Group)
+-- 1__create_author.sql (Migration)
+-- 2__create_post.sql (Migration)
+-- 2__fancy_stuff (Group)
+-- 1__something_fancy.sql (Migration)
Group
: A set of migrations that must also contain an unique version and a name.Migration
: A migration that is executed once and can't be modified.The SQL file itself is composed by two parts, one for migrations (-- oapth UP
section) and another for rollbacks (-- oapth DOWN
section).
```sql -- oapth UP
CREATE TABLE author ( id INT NOT NULL PRIMARY KEY, added TIMESTAMP NOT NULL, birthdate DATE NOT NULL, email VARCHAR(100) NOT NULL, firstname VARCHAR(50) NOT NULL, lastname VARCHAR(50) NOT NULL );
-- oapth DOWN
DROP TABLE author; ```
Execution order between migrations and migration groups is dictated by their numeric declaration order.
The library gives freedom to arrange groups and uses arrayvec
, chrono
and siphash
as mandatory internal crates which brings a total of 6 dependencies into your application. If this behavior is not acceptable, then you probably should discard the library and use the CLI binary instead as part of a custom deployment strategy.
```rust // oapth = { features = ["with-sqlx-postgres", "with-sqlx-runtime-async-std"], version = "SOME_VERSION" }
use oapth::{Commands, Config, SqlxPostgres}; use std::path::Path;
async fn main() -> oapth::Result<()> { let config = Config::withurlfromdefaultvar()?; let mut commands = Commands::new(SqlxPostgres::new(&config).await?); commands.migratefromdir(Path::new("mycustommigrationgrouppath"), 128).await?; Ok(()) } ```
One thing worth noting is that these mandatory dependencies might already be part of your application as transients. In case of doubt, check your Cargo.lock
file or type cargo tree
for analysis.
It is necessary to specify a desired feature to actually run the transactions, otherwise you will get a bunch of code that won't do much. Take a look at Supported back ends.
bash
cargo install oapth-cli
oapth migrate # Will do nothing
Each back end has a feature that can be selected when using the library:
bash
oapth = { features = ["with-tokio-postgres"], version = "SOME_VERSION" }
with-diesel-mssql
with-diesel-mysql
with-diesel-postgres
with-mysql_async
with-rusqlite
with-sqlx-mysq
with-sqlx-mssql
with-sqlx-postgres
with-sqlx-sqlite
with-tiberius
with-tokio-postgres
Or when installing the CLI binary:
bash
cargo install oapth-cli --features "postgres"
mssql
mysql
postgres
sqlite
Only migrations are supported and schema printing is still a work in progress. For any unsupported use-case, please use the official Diesel CLI binary.
For supported databases, there is no direct user parameter that inserts migrations inside a single database schema but it is possible to specify the schema inside the SQL file and arrange the migration groups structure in a way that most suits you.
```sql -- oapth UP
CREATE SCHEMA cooldepartmentschema;
CREATE TABLE cooldepartmentschema.author ( id INT NOT NULL PRIMARY KEY, full_name VARCHAR(50) NOT NULL );
-- oapth DOWN
DROP TABLE cooldepartmentschema.author; DROP SCHEMA cooldepartmentschema; ```
For PostgreSQL (except Diesel), migration timestamps are stored and retrieved with the timezone declared in the database. For everything else, timestamps are UTC.
| Backend | Type | | ---------------------- | ---------------- | | Diesel (MariaDB/Mysql) | UTC | | Diesel (PostgreSQL) | UTC | | Diesel (SQlite) | UTC | | mysql_async | UTC | | rusqlite | UTC | | SQLx (MariaDB/MySql) | UTC | | SQLx (MS-SQL) | UTC | | SQLx (PostgreSQL) | Fixed time zones | | SQLx (SQLite) | UTC | | tiberius | UTC | | tokio-postgres | Fixed time zones |