aboutsummaryrefslogtreecommitdiff
path: root/src/schema.rs
blob: 8ed6e58bf3a12d7b37c431172024899d0df412ce (plain)
1
2
3
4
5
6
7
8
9
table! {
    members (id) {
        id -> Integer,
        username -> Varchar,
        password -> Varchar,
        phone_number -> Varchar,
        email_id -> Varchar,
    }
}