1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
mod api; mod backend; mod cleanup; mod discovery; mod environment; mod error; mod execute_mysql; mod execute_postgres; mod execute_sqlite; mod guard; mod identity; mod migration_directory; mod model; mod mysql; mod mysql_create; mod mysql_drop; mod mysql_pool; mod postgres; mod postgres_create; mod postgres_drop; mod postgres_pool; mod sql; mod sqlite; #[cfg(test)] mod discovery_test; #[cfg(test)] mod guard_test; #[cfg(test)] mod sqlite_test; #[cfg(test)] mod test_support; pub use api::validate_migrations; pub use error::MigrationValidationError; pub use model::MigrationValidationReport;