https://github.com/diesel-rs/diesel/tree/master/diesel_cli cargo install diesel_cli --no-default-features --features "postgres sqlite mysql"
echo DATABASE_URL=postgres//:@localhost/<DB_NAME> > .env echo DATABASE_URL=postgres://apiuser:password@localhost/resto-api-db > .env
diesel setup diesel migration generate create_menu_items
diesel migration run Create table in DB, based on up.sql and creates schema.rs definition too
diesel migration revert
diesel migration redo (down + up)
Print table definitions for database schema