mirror of
https://github.com/coder/coder.git
synced 2025-07-08 11:39:50 +00:00
36 lines
762 B
SQL
36 lines
762 B
SQL
-- GetAuditLogsBefore retrieves `limit` number of audit logs before the provided
|
|
-- ID.
|
|
-- name: GetAuditLogsBefore :many
|
|
SELECT
|
|
*
|
|
FROM
|
|
audit_logs
|
|
WHERE
|
|
audit_logs."time" < COALESCE((SELECT "time" FROM audit_logs a WHERE a.id = sqlc.arg(id)), sqlc.arg(start_time))
|
|
ORDER BY
|
|
"time" DESC
|
|
LIMIT
|
|
sqlc.arg(row_limit);
|
|
|
|
-- name: InsertAuditLog :one
|
|
INSERT INTO
|
|
audit_logs (
|
|
id,
|
|
"time",
|
|
user_id,
|
|
organization_id,
|
|
ip,
|
|
user_agent,
|
|
resource_type,
|
|
resource_id,
|
|
resource_target,
|
|
action,
|
|
diff,
|
|
status_code,
|
|
additional_fields,
|
|
request_id,
|
|
resource_icon
|
|
)
|
|
VALUES
|
|
($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15) RETURNING *;
|