mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-10 14:34:19 +00:00
96b76dc737
* update tests/x.py * add examples/x.py |
||
---|---|---|
.. | ||
migrations | ||
src | ||
Cargo.toml | ||
README.md |
TODOs Example
Setup
-
Declare the database URL
export DATABASE_URL="mysql://root:password@localhost/todos"
-
Create the database.
$ sqlx db create
-
Run sql migrations
$ sqlx migrate run
Usage
Add a todo
cargo run -- add "todo description"
Complete a todo.
cargo run -- done <todo id>
List all todos
cargo run