// @generated automatically by Diesel CLI. diesel::table! { scan_tasks (task_group_id, cidr) { #[max_length = 255] task_group_id -> Varchar, #[max_length = 255] cidr -> Varchar, #[max_length = 255] created_by_username -> Varchar, created_at -> Datetime, updated_at -> Nullable, started_at -> Nullable, still_processing_at -> Nullable, ended_at -> Nullable, } } diesel::table! { scanners (ip, ip_type) { #[max_length = 255] ip -> Varchar, ip_type -> Unsigned, #[max_length = 255] scanner_name -> Varchar, #[max_length = 255] ip_ptr -> Nullable, created_at -> Datetime, updated_at -> Nullable, last_seen_at -> Nullable, last_checked_at -> Nullable, } } diesel::allow_tables_to_appear_in_same_query!(scan_tasks, scanners,);