Ryan Leckey
Ryan Leckey
```rust // 20210314225352_name.rs #[sqlx::migration] // generates fn main() that calls this migration function pub async fn migrate_default_materials( txn: &mut SqliteTransaction, ) -> Result { // Create tables and data Ok(())...
We now ( on master ) have an `Acquire` trait. This is not the clean API I was hoping for but it does **work** and that may be all you...
We used to do as you're suggesting with `impl Executor for Pool`. However, that would require `&mut` access to a `Pool`. Which, arguably isn't hard to get as you can...
This *will* be done but the main issue is how breaking a change it will be to change the type enumeration around before we stabilize it. We've tried to hide...