Jeremy Zheng d6578af01b :pencil: add create database hace 4 años
..
migrations 393741a04d :construction: using db migrations hace 4 años
.env 393741a04d :construction: using db migrations hace 4 años
README.md d6578af01b :pencil: add create database hace 4 años

README.md

USAGE

psql -U postgres -h 127.0.0.1 -p 5432
> create database mint;
source .env

# Generate a new migration with the given name
diesel migration generate NAME
# Runs all pending migrations
diesel migration run
# Reverts the latest run migration
diesel migration revert
# Lists all available migrations
diesel migration list