Fields
migrations: Cow<'static, [Migration]>
ignore_missing: bool
Implementations
sourceimpl Migrator
impl Migrator
sourcepub async fn new<'s, S>(source: S) -> Result<Self, MigrateError> where
S: MigrationSource<'s>,
pub async fn new<'s, S>(source: S) -> Result<Self, MigrateError> where
S: MigrationSource<'s>,
Creates a new instance with the given source.
Examples
use std::path::Path;
// Read migrations from a local folder: ./migrations
let m = Migrator::new(Path::new("./migrations")).await?;
See MigrationSource for details on structure of the ./migrations
directory.
sourcepub fn set_ignore_missing(&mut self, ignore_missing: bool) -> &Self
pub fn set_ignore_missing(&mut self, ignore_missing: bool) -> &Self
Specify should ignore applied migrations that missing in the resolved migrations.
sourcepub async fn run<'a, A>(&self, migrator: A) -> Result<(), MigrateError> where
A: Acquire<'a>,
<A::Connection as Deref>::Target: Migrate,
pub async fn run<'a, A>(&self, migrator: A) -> Result<(), MigrateError> where
A: Acquire<'a>,
<A::Connection as Deref>::Target: Migrate,
Run any pending migrations against the database; and, validate previously applied migrations against the current migration source to detect accidental changes in previously-applied migrations.
Examples
let m = Migrator::new(std::path::Path::new("./migrations")).await?;
let pool = sqlx_core::sqlite::SqlitePoolOptions::new().connect("sqlite::memory:").await?;
m.run(&pool).await
sourcepub async fn undo<'a, A>(
&self,
migrator: A,
target: i64
) -> Result<(), MigrateError> where
A: Acquire<'a>,
<A::Connection as Deref>::Target: Migrate,
pub async fn undo<'a, A>(
&self,
migrator: A,
target: i64
) -> Result<(), MigrateError> where
A: Acquire<'a>,
<A::Connection as Deref>::Target: Migrate,
Run down migrations against the database until a specific version.
Examples
let m = Migrator::new(std::path::Path::new("./migrations")).await?;
let pool = sqlx_core::sqlite::SqlitePoolOptions::new().connect("sqlite::memory:").await?;
m.undo(&pool, 4).await
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Migrator
impl Send for Migrator
impl Sync for Migrator
impl Unpin for Migrator
impl UnwindSafe for Migrator
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more