// @generated automatically by Diesel CLI. diesel::table! { images (id) { id -> Integer, title -> Text, #[sql_name = "filePath"] path -> Text, } } diesel::table! { presentations (id) { id -> Integer, title -> Text, #[sql_name = "filePath"] path -> Text, #[sql_name = "pageCount"] page_count -> Nullable, } } diesel::table! { songs (id) { id -> Integer, title -> Text, lyrics -> Nullable, author -> Nullable, ccli -> Nullable, audio -> Nullable, vorder -> Nullable, background -> Nullable, backgroundType -> Nullable, horizontalTextAlignment -> Nullable, verticalTextAlignment -> Nullable, font -> Nullable, fontSize -> Nullable, } } diesel::table! { videos (id) { id -> Integer, title -> Text, #[sql_name = "filePath"] path -> Text, #[sql_name = "startTime"] start_time -> Nullable, #[sql_name = "endTime"] end_time -> Nullable, #[sql_name = "loop"] looping -> Bool, } } diesel::allow_tables_to_appear_in_same_query!(images, presentations, songs, videos,);