#![allow(warnings)] table! { episodes (title, show_id) { rowid -> Integer, title -> Text, uri -> Nullable, local_uri -> Nullable, description -> Nullable, epoch -> Integer, length -> Nullable, duration -> Nullable, guid -> Nullable, played -> Nullable, show_id -> Integer, } } table! { shows (id) { id -> Integer, title -> Text, link -> Text, description -> Text, image_uri -> Nullable, source_id -> Integer, } } table! { source (id) { id -> Integer, uri -> Text, last_modified -> Nullable, http_etag -> Nullable, } } allow_tables_to_appear_in_same_query!(episodes, shows, source);