1
1
mirror of https://github.com/ellie/atuin.git synced 2024-09-19 17:07:48 +03:00

SQLx cannot run this migration OK (#353)

And also correct a typo
This commit is contained in:
Ellie Huxtable 2022-04-26 18:17:56 +01:00 committed by GitHub
parent d8ef5dd93a
commit f8233bcb63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View File

@ -1 +0,0 @@
create index concurrently if not exists "history_idx" on history using btree (user_id, timestamp);

View File

@ -99,7 +99,7 @@ impl Database for Postgres {
#[instrument(skip_all)]
async fn get_session_user(&self, token: &str) -> Result<User> {
sqlx::query_as::<_, User>(
"select users.id, users.username, user.email, users.password from users
"select users.id, users.username, users.email, users.password from users
inner join sessions
on users.id = sessions.user_id
and sessions.token = $1",