Open
Description
The CLI's sqlx migrate run
has a --ignore-missing
flag which I'd love to be able to pass to the migrate macro.
Currently the migrate macro hardcodes ignore_missing: false
Currently it's used as such:
static MIGRATOR: Migrator = sqlx::migrate!();
It is possible to do it like this
static MIGRATOR: Migrator = {
let mut m = sqlx::migrate!();
m.ignore_missing = true;
m
};
Would like something more ergonomic