cleanup minor things

This commit is contained in:
2021-08-20 15:05:50 -05:00
parent 4b859492c1
commit 01d2afb3dd
9 changed files with 41 additions and 19 deletions

View File

@@ -72,9 +72,9 @@ WHERE
";
pub async fn get_pool() -> Result<SqlitePool, sqlx::Error> {
// "sqlite://test.db"
// "sqlite://demo.db"
let options = SqliteConnectOptions::new()
.filename("test.db")
.filename("demo.db")
.create_if_missing(true);
let pool = SqlitePoolOptions::new()