refactor: use new updateId column for user CUD sync (#16384)

This commit is contained in:
Zack Pollard 2025-02-27 14:22:02 +00:00 committed by GitHub
parent 7d6cfd09e6
commit fb907d707d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 50 additions and 47 deletions

1
server/src/db.d.ts vendored
View file

@ -415,6 +415,7 @@ export interface Users {
}
export interface UsersAudit {
id: Generated<string>;
userId: string;
deletedAt: Generated<Timestamp>;
}