I’ll assume “Uni” refers to a shared/umbrella application structure where you want a reusable Ecto-based plugin (e.g., multi-tenancy, auditing, soft-deletes, or encryption) that can be dropped into any context.
deleted_at field + filter on queries.tenant_id.The combination of Uni and Ecto offers the best of both worlds: uni ecto plugin
To understand the plugin, we must first understand the two distinct technologies involved: Soft-delete – deleted_at field + filter on queries
end end