QL for QL: sync changes from Ruby

In particular, update the dbscheme to put location columns in a single
table.
This commit is contained in:
Nick Rolfe
2022-02-07 13:14:53 +00:00
parent 9217d0e1b9
commit 3ee109731a
7 changed files with 608 additions and 962 deletions

View File

@@ -427,7 +427,7 @@ fn dbscheme_name_to_class_name(dbscheme_name: &str) -> String {
}
dbscheme_name
.split('_')
.map(|word| to_title_case(word))
.map(to_title_case)
.collect::<Vec<String>>()
.join("")
}