1
0
mirror of https://github.com/actix/examples synced 2025-02-09 04:15:37 +01:00
examples/basics/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,
}
}