|
|
hace 4 años | |
|---|---|---|
| .. | ||
| migrations | hace 4 años | |
| .env | hace 4 años | |
| README.md | hace 4 años | |
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