use crate::traits::Schema;
#[allow(non_camel_case_types)]
pub struct job_upload;
impl Schema for job_upload {
fn string(&self) -> String {
"job_upload".to_string()
}
}
#[cfg(test)]
pub(crate) fn collect_known(
map: &mut std::collections::HashMap<String, std::collections::HashMap<String, Vec<String>>>,
) {
#[allow(unused_mut)]
let mut tables = std::collections::HashMap::new();
map.insert(job_upload.string(), tables);
}