table! { episode (id) { id -> Integer, title -> Nullable, uri -> Text, local_uri -> Nullable, description -> Nullable, published_date -> Nullable, epoch -> Integer, length -> 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, } }