You've already forked agentic-coding-workflow
4 lines
142 B
SQL
4 lines
142 B
SQL
-- name: InsertAuditLog :exec
|
|
INSERT INTO audit_logs (user_id, action, target_type, target_id, ip, metadata)
|
|
VALUES ($1, $2, $3, $4, $5, $6);
|