forge-runtime 0.0.1-alpha

Runtime executors and gateway for the Forge framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Database migration system.
//!
//! Provides both built-in FORGE schema migrations and support for user migrations.

mod builtin;
mod diff;
mod executor;
mod generator;
mod runner;

pub use diff::{DiffAction, DiffEntry, SchemaDiff};
pub use executor::MigrationExecutor;
pub use generator::MigrationGenerator;
pub use runner::{
    load_migrations_from_dir, AppliedMigration, Migration, MigrationRunner, MigrationStatus,
};

// Re-export for internal use