table! { episode (title, podcast_id) { rowid -> Integer, title -> Text, uri -> Nullable, local_uri -> Nullable, description -> Nullable, epoch -> Integer, length -> Nullable, duration -> Nullable, guid -> Nullable, played -> Nullable, favorite -> Bool, archive -> Bool, podcast_id -> Integer, } } table! { podcast (id) { id -> Integer, title -> Text, link -> Text, description -> Text, image_uri -> Nullable, favorite -> Bool, archive -> Bool, always_dl -> Bool, source_id -> Integer, } } table! { source (id) { id -> Integer, uri -> Text, last_modified -> Nullable, http_etag -> Nullable, } } allow_tables_to_appear_in_same_query!(episode, podcast, source,);