1 2 3 4 5 6 7 8
//! Testing utilities for migration development #[cfg(feature = "mysql")] pub mod mysql; #[cfg(feature = "postgres")] pub mod postgres; #[cfg(feature = "sqlite")] pub mod sqlite;