1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2025-01-05 23:08:46 +00:00
actix-web/examples/diesel/src/schema.rs

7 lines
76 B
Rust
Raw Normal View History

2017-12-19 00:25:26 +00:00
table! {
users (id) {
id -> Text,
name -> Text,
}
}