1 2 3 4
pub fn column_name_for_ident(ident: &syn::Ident) -> String { let name = ident.to_string(); name.strip_prefix("r#").unwrap_or(&name).to_owned() }