1
0
mirror of https://github.com/docker/awesome-compose.git synced 2025-07-05 05:23:52 +00:00
awesome-compose/react-rust-postgres/backend/src/schema.rs
Jérémie Drouet b73e252639 react-rust-postgres: add connection to postgres with migrations
Signed-off-by: Jérémie Drouet <jeremie.drouet@gmail.com>
2020-03-26 10:39:45 +01:00

7 lines
77 B
Rust

table! {
users (id) {
id -> Int4,
login -> Text,
}
}