1
0
mirror of https://github.com/actix/examples synced 2024-12-02 18:02:22 +01:00
examples/basics/todo/src/schema.rs
2021-02-26 00:57:58 +00:00

8 lines
113 B
Rust

table! {
tasks (id) {
id -> Int4,
description -> Varchar,
completed -> Bool,
}
}