Macro force_create_table

Source
macro_rules! force_create_table {
    ($($x:ty),+) => { ... };
}
Expand description

Like try_create_table! but if a table with the same name already exists, it is dropped instead of returning an error.

§Example

force_create_table(MyModel, AnotherModel).await?;