diff --git a/src/app/state/db.rs b/src/app/state/db.rs index 1e66f2df..9bf05ef7 100644 --- a/src/app/state/db.rs +++ b/src/app/state/db.rs @@ -22,11 +22,11 @@ impl Db { // Initial schema sqlx::query( "CREATE TABLE IF NOT EXISTS flake ( - url TEXT NOT NULL, - metadata JSON, - last_accessed TIMESTAMP DEFAULT CURRENT_TIMESTAMP, - last_fetched TIMESTAMP - );", + url TEXT NOT NULL, + metadata JSON, + last_accessed TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + last_fetched TIMESTAMP + );", ) .execute(&pool) .await?;