1
2
3
4
5
6
7
8
#![allow(missing_docs)]
table! {
    clients (uid) {
        uid -> Int8,
        ip -> Varchar,
        port -> Int4,
    }
}