pub trait MigrationSource<DB: Backend> { // Required method fn migrations(&self) -> Result<Vec<Box<dyn Migration<DB>>>>; }
A migration source is an entity that can be used to receive a number of migrations from.
Get a list of migrations associated with this migration source.