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

8 lines
113 B
Rust
Raw Normal View History

2018-08-27 11:56:26 +02:00
table! {
tasks (id) {
id -> Int4,
description -> Varchar,
completed -> Bool,
}
}