This commit is contained in:
Elijah McMorris 2024-08-26 00:38:37 -07:00
parent 7624d7209d
commit 731df97cd2
Signed by: NexVeridian
SSH key fingerprint: SHA256:bsA1SKZxuEcEVHAy3gY1HUeM5ykRJl0U0kQHQn0hMg8
2 changed files with 4 additions and 3 deletions

View file

@ -185,6 +185,7 @@ pub async fn create_db_entities_bulk_filter(
.collect();
let file_path = format!("data/temp/{}.surql", file_name);
tokio::fs::create_dir_all("data/temp").await?;
db_mem.export(&file_path).await?;
db.import(&file_path).await?;