pub trait SqlxMigrationExt<DB>{
// Required method
fn migrate<'life0, 'async_trait>(
&'life0 self,
migrator: Migrator,
) -> Pin<Box<dyn Future<Output = Result<(), Error<Error>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}