feat: add foreign key support
All checks were successful
Build project / quality-and-build (push) Successful in 10m38s
Build project / SonarQube Trigger (push) Successful in 22s

This commit is contained in:
Namu
2026-06-16 22:47:22 +02:00
parent 06a23fc6d3
commit f314f3daca
8 changed files with 301 additions and 27 deletions

View File

@@ -42,7 +42,7 @@ mod tests {
fn test_db_builder() {
let facade = DbBuilderFacade{};
match facade.build("./example.json".to_string(), "test.db".to_string()) {
match facade.build("./example.json".to_string(), ":memory:".to_string()) {
Ok(_) => {assert!(true)},
Err(message) => {assert!(false, "{}", message)}
}