pub trait MigrationStore {
// Required method
fn changelogs(&self) -> Vec<ChangelogFile>;
}Expand description
Struct storing the changelogs needed for the migrations
Implementations of this trait will usually be generated by the migrations macro, but can
also be created manually.