migrant_lib icon indicating copy to clipboard operation
migrant_lib copied to clipboard

Embeddable migration management

Results 6 migrant_lib issues
Sort by recently updated
recently updated
newest added

Instead of creating a new connection for each operation, which is cruft related to #25 . This would also unblock #6

I have been writing a program that manages its own migrations. However, I need a statement to run outside a transaction. My setup is the following: ```rust log::info!("Ensuring migrations are...

This bit me recently, mostly because I didn't expect "no changes needed" to be an error at all (if I needed that information, I would probably prefer an accessor on...

It was fun at the time to see if we could work transparently with or without installing with the db driver features. It made installing with `cargo install` convenient so...

Hello, It would be great if SQLite's :memory: database was supported. Currently `SqliteSettingsBuilder` requires a [`database_path`](https://docs.rs/migrant_lib/0.19.2/migrant_lib/config/struct.SqliteSettingsBuilder.html#method.database_path), so migrations will be applied to an in-memory database and immediately dropped. It would...