You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mediarepo/mediarepo-daemon/mediarepo-database/migration/src/utils.rs

10 lines
239 B
Rust

#[macro_export]
macro_rules! drop_tables {
($man:expr, $($tbl:expr),*) => {
use sea_orm_migration::prelude::*;
$(
$man.drop_table(TableDropStatement::new().table($tbl).to_owned()).await?;
)*
}
}