Trait MigrationSource
pub trait MigrationSource<DB>where
DB: Backend,{
// Required method
fn migrations(
&self,
) -> Result<Vec<Box<dyn Migration<DB>>>, Box<dyn Error + Send + Sync>>;
}Expand description
A migration source is an entity that can be used to receive a number of migrations from.