fix deprecated kysely usage

This commit is contained in:
Philipinho
2025-05-09 16:44:33 +01:00
parent 55d1a2c932
commit c6bca6a602
2 changed files with 2 additions and 2 deletions

View File

@ -70,7 +70,7 @@ export class UserTokenRepo {
.where('userId', '=', userId) .where('userId', '=', userId)
.where('workspaceId', '=', workspaceId) .where('workspaceId', '=', workspaceId)
.where('type', '=', tokenType) .where('type', '=', tokenType)
.orderBy('expiresAt desc') .orderBy('expiresAt', 'desc')
.execute(); .execute();
} }

View File

@ -70,7 +70,7 @@ export class WorkspaceRepo {
return await this.db return await this.db
.selectFrom('workspaces') .selectFrom('workspaces')
.selectAll() .selectAll()
.orderBy('createdAt asc') .orderBy('createdAt', 'asc')
.limit(1) .limit(1)
.executeTakeFirst(); .executeTakeFirst();
} }