1
0
mirror of https://github.com/actix/examples synced 2025-02-23 17:53:02 +01:00
examples/todo/src/schema.rs
2019-12-07 23:59:24 +06:00

8 lines
113 B
Rust

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