Skip to content

Commit

Permalink
refactor(sqlite): handle ignored result
Browse files Browse the repository at this point in the history
  • Loading branch information
open-schnick committed Oct 25, 2024
1 parent aa94207 commit 5d3074a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/db/sqlite/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ impl Driver for Sqlite {

async fn reset_db(&self, schema: &Schema) -> Result<()> {
for table in schema.tables() {
self.create_table(schema, table);
self.create_table(schema, table)?;
}

Ok(())
Expand Down

0 comments on commit 5d3074a

Please sign in to comment.