refuel is a simple diesel Postgres migration tool. It is designed to simply running a Postgres database migration with diesel.
refuel can be installed using cargo
cargo install refuelUsing refuel is simple. All you need to do is run the following command.
refuel --toml-file [path/to/TOML/file]provide refuel with a TOML file containing the following keys:
username = "your_username"
password = "your_password"
dbname = "your_db_name"Simply run the command and let refuel handle the rest.
