Quentin Santos
Quentin Santos
To be clear, I am using a formatter as well, and I encounter the issue without long lines. It was easier to reproduce it with that example, however.
This is poorly documented, but [the `-r` flag only has effect when making the first migration](https://github.com/launchbadge/sqlx/blob/f6d2fa3a3de1d888f4e36096dd56a3f5e0c95771/sqlx-cli/src/migrate.rs#L113-L115). [Subsequent migrations will automatically use the same mode](https://github.com/launchbadge/sqlx/blob/f6d2fa3a3de1d888f4e36096dd56a3f5e0c95771/sqlx-core/src/migrate/migration_type.rs#L79-L86).
My reflex was to `--help` from the CLI (as did OP apparently). As shown below, the information is actually present, in an introduction text. However, I am used to jump...
I have encountered this issue as well, and reduced it to: ```rust struct S(String); impl S { fn g(&mut self, _s: &str) { unimplemented!() } fn f(&mut self) { let...