Skip to content

Commit

Permalink
delete kitsune schema to clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
aumetra committed Jan 21, 2024
1 parent f80cede commit d08e62b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion crates/kitsune-test/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,12 @@ where
diesel::sql_query("DROP SCHEMA public CASCADE")
.execute(db_conn)
.await
.expect("Failed to delete schema");
.expect("Failed to delete \"public\" schema");

diesel::sql_query("DROP SCHEMA kitsune CASCADE")
.execute(db_conn)
.await
.expect("Failed to delete \"kitsune\" schema");

diesel::sql_query("CREATE SCHEMA public")
.execute(db_conn)
Expand Down

0 comments on commit d08e62b

Please sign in to comment.