use georm::Georm; #[derive(Debug, Georm)] #[georm(table = "tests.authors")] struct Author { #[georm(column = "author_id", id)] id: i32, name: String }