sqlx_migrator 0.18.0

Migrator for writing sqlx migration using Rust instead of SQL
Documentation
#![cfg_attr(docsrs, feature(doc_auto_cfg))]

//! Library to create sqlx migration using rust code instead of sql.
//!
//! Check `README.MD` for more detailed information of how to use a crate
//! and visit [`Operation`], [`Migration`] and [`Migrator`]

#[cfg(feature = "cli")]
pub use crate::cli::MigrationCommand;
pub use crate::error::Error;
pub use crate::migration::Migration;
pub use crate::migrator::{Info, Migrate, Migrator, Plan};
pub use crate::operation::Operation;
pub use crate::sync::{OldMigrator, Synchronize};

#[cfg(feature = "cli")]
pub mod cli;
pub mod error;
mod macros;
pub mod migration;
pub mod migrator;
pub mod operation;
pub mod sync;