8 lines
184 B
SQL
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 *;
|
|
|