1
0
mirror of https://github.com/actix/examples synced 2025-02-24 02:03:02 +01:00
examples/todo/src/schema.rs

8 lines
113 B
Rust
Raw Normal View History

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