1 2 3 4 5 6 7
use crate::MigrationContext; pub trait MigrateFrom<TOld>: Sized { const RENAMES: &'static [(&'static str, &'static str)] = &[]; fn migrate(old: TOld, ctx: &mut MigrationContext) -> crate::Result<Self>; }