4 lines
120 B
SQL
4 lines
120 B
SQL
-- name: CreateAuditLog :exec
|
|
INSERT INTO audit_logs (entity_type, entity_id, action, user_id)
|
|
VALUES ($1, $2, $3, $4);
|