aboutsummaryrefslogtreecommitdiffstats
path: root/src/schema.rs
blob: cff43ec1062023969f0b7d6d4c4db24e244c457c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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,);