Compare commits

..

No commits in common. "e728c4dbeada40706aa8ca3bd3cad6bfb93fc431" and "96036b180b41de2592c634d48d5e2c2f2081ceb0" have entirely different histories.

View File

@ -450,7 +450,6 @@ ORDER BY last_access DESC
}
pub async fn create(db: &SqlitePool, name: &str) -> bool {
let name = name.trim();
sqlx::query!("INSERT INTO USER(name) VALUES (?)", name)
.execute(db)
.await