Crate refinery_core[][src]

Re-exports

pub use crate::error::Error;
pub use crate::traits::async::AsyncMigrate;
pub use crate::traits::sync::Migrate;
pub use rusqlite;
pub use postgres;
pub use mysql;
pub use mysql_async;
pub use tokio;

Modules

Structs

Represents a schema migration to be run on the database, this struct is used by the embed_migrations! and include_migration_mods! macros to gather migration files and shouldn’t be needed by the user

Struct that represents the report of the migration cycle, a Report instance is returned by the Runner::run and Runner::run_async methods via Result<Report, Error>, on case of an Error during a migration, you can acess the Report with Error.report

Struct that represents the entrypoint to run the migrations, an instance of this struct is returned by the embed_migrations! and include_migration_mods! macros. Runner should not need to be instantiated manually

Enums

enum containing the migration types used to search for migrations either Rust Modules or Sql files

An enum set that represents the target version up to which refinery should migrate, it is used by Runner

Functions

find migrations on file system recursively across directories given a location and MigrationType