Current section

Files

Jump to
commanded_audit_middleware lib commanded middleware auditing command_audit.ex
Raw

lib/commanded/middleware/auditing/command_audit.ex

defmodule Commanded.Middleware.Auditing.CommandAudit do
use Ecto.Schema
@data_column_schema_type Application.get_env(
:commanded_audit_middleware,
:data_column_schema_type,
:binary
)
@metadata_column_schema_type Application.get_env(
:commanded_audit_middleware,
:metadata_column_schema_type,
:binary
)
@primary_key {:command_uuid, :string, []}
schema "command_audit" do
field(:causation_id, :binary_id)
field(:correlation_id, :binary_id)
field(:occurred_at, :naive_datetime_usec)
field(:command_type, :string)
field(:data, @data_column_schema_type)
field(:metadata, @metadata_column_schema_type)
field(:success, :boolean)
field(:execution_duration_usecs, :integer)
field(:error, :string)
field(:error_reason, :string)
end
end