table! { event (id) { id -> Int4, name -> Varchar, description -> Nullable, } } table! { films (id) { id -> Int4, title -> Varchar, url -> Nullable, } } table! { rooms (id) { id -> Int4, name -> Varchar, } } table! { screenings (id) { id -> Int4, film_id -> Int4, room_id -> Int4, start_time -> Timestamptz, end_time -> Timestamptz, } } allow_tables_to_appear_in_same_query!( event, films, rooms, screenings, );