1 2 3 4 5 6 7 8 9 10 11
//! SZ-ORM Migration //! //! 数据库迁移系统:文件迁移、Phinx 兼容迁移、Schema 生成。 pub mod migration; pub mod phinx_migration; pub mod schema_gen; pub use migration::*; pub use phinx_migration::*; pub use schema_gen::*;