sqlcx-core 0.2.1

SQL-first cross-language type-safe code generator — core library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod driver;
pub mod file;
pub mod new;
pub mod pg;
pub mod runner;
pub mod state;

pub use driver::MigrationDriver;
pub use file::{MigrationFile, discover_migrations};
pub use new::create_new_migration;
pub use pg::PostgresDriver;
pub use runner::{MigrationOutcome, MigrationStatus, compute_status, run_pending};
pub use state::AppliedMigration;