soma-schema 0.1.0

A standalone, reusable SQL migration tool — plain SQL files with UP/DOWN, version tracking, and advisory-lock safety. Postgres first, designed multi-DB.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod discovery;
pub mod driver;
pub mod error;
pub mod manifest;
pub mod migration;
pub mod migrator;
pub mod postgres;

pub use discovery::discover;
pub use error::{Error, Result};
pub use migration::{Migration, SetupFile};
pub use migrator::Migrator;
pub use postgres::{PostgresConfig, PostgresDriver};