pub trait Migrate {
    fn ensure_migrations_table(
        &mut self
    ) -> Pin<Box<dyn Future<Output = Result<(), MigrateError>> + Send, Global>>; fn dirty_version(
        &mut self
    ) -> Pin<Box<dyn Future<Output = Result<Option<i64>, MigrateError>> + Send, Global>>; fn version(
        &mut self
    ) -> Pin<Box<dyn Future<Output = Result<Option<(i64, bool)>, MigrateError>> + Send, Global>>; fn validate<'e, 'm>(
        &'e mut self,
        migration: &'m Migration
    ) -> Pin<Box<dyn Future<Output = Result<(), MigrateError>> + Send + 'm, Global>>
    where
        'e: 'm
; fn list_applied_migrations(
        &mut self
    ) -> Pin<Box<dyn Future<Output = Result<Vec<AppliedMigration, Global>, MigrateError>> + Send, Global>>; fn lock(
        &mut self
    ) -> Pin<Box<dyn Future<Output = Result<(), MigrateError>> + Send, Global>>; fn unlock(
        &mut self
    ) -> Pin<Box<dyn Future<Output = Result<(), MigrateError>> + Send, Global>>; fn apply<'e, 'm>(
        &'e mut self,
        migration: &'m Migration
    ) -> Pin<Box<dyn Future<Output = Result<Duration, MigrateError>> + Send + 'm, Global>>
    where
        'e: 'm
; fn revert<'e, 'm>(
        &'e mut self,
        migration: &'m Migration
    ) -> Pin<Box<dyn Future<Output = Result<Duration, MigrateError>> + Send + 'm, Global>>
    where
        'e: 'm
; }

Required Methods

👎 Deprecated
👎 Deprecated

Implementors