Remove unused code

This commit is contained in:
Taras Kushnir
2026-01-15 14:57:51 +02:00
parent 809a667bf9
commit 64ceb48321
4 changed files with 0 additions and 37 deletions
-3
View File
@@ -16,9 +16,6 @@ INSERT INTO backend.organization_users (org_id, user_id, level) VALUES ($1, $2,
-- name: InviteEmailToOrg :one
INSERT INTO backend.organization_users (org_id, email, level) VALUES ($1, $2, 'invited') RETURNING *;
-- name: GetOrgInviteByID :one
SELECT * FROM backend.organization_users WHERE id = $1;
-- name: LinkOrgInviteToUser :one
UPDATE backend.organization_users
SET user_id = $1, email = NULL, updated_at = NOW()