1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
table! { posts (id) { id -> Int4, thread -> Int4, body -> Text, posted -> Timestamptz, } } table! { threads (id) { id -> Int4, title -> Varchar, body -> Text, posted -> Timestamptz, } } joinable!(posts -> threads (thread)); allow_tables_to_appear_in_same_query!( posts, threads, );