Open bencates opened 11 months ago
Prior to this the primary key of a schema was assumed to be named id. This switches to using the entity_schema.__schema__(:primary_key) function provided by Ecto to support tracking schemas which use aIt non-default field name.
id
entity_schema.__schema__(:primary_key)
@narrowtux Any plans to merge this PR ?
Prior to this the primary key of a schema was assumed to be named
id
. This switches to using theentity_schema.__schema__(:primary_key)
function provided by Ecto to support tracking schemas which use aIt non-default field name.