blob: ad122fdd1ac7464e5a3392f853da2e72da13b536 (
plain) (
tree)
|
|
table! {
posts (id) {
id -> Int4,
title -> Varchar,
body -> Text,
published -> Bool,
}
}
table! {
users (id) {
id -> Int4,
username -> Varchar,
realname -> Nullable<Varchar>,
email -> Nullable<Varchar>,
password -> Varchar,
}
}
allow_tables_to_appear_in_same_query!(
posts,
users,
);
|