Files
2026-09-22 22:51:19 +08:00

8 lines
184 B
SQL

-- name: CreateConfigAuditLog :one
INSERT INTO config_audit_logs (
id, admin_id, target_type, target_id, action, before_json, after_json
)
VALUES (?, ?, ?, ?, ?, ?, ?)
RETURNING *;