From dffbe601704e6d7ba8fec1bec358c8be65f4bca8 Mon Sep 17 00:00:00 2001 From: mathiasag7 <50689712+mathiasag7@users.noreply.github.com> Date: Thu, 5 Oct 2023 14:59:03 +0100 Subject: [PATCH] Update README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 22dba63..0f4bd39 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,14 @@ ## Django EAV 2 - Entity-Attribute-Value storage for Django with the possibility of changing the pk field and using natural key for serialization +## What is new here ? + +With this version of a href="https://django-eav2.rtfd.io">django eav, you can use an IntegerField or a UUIDField as the primary key for your eav models. + Django EAV 2 is a fork of django-eav (which itself was derived from eav-django). You can find documentation here. + ## What is EAV anyway? > Entity–attribute–value model (EAV) is a data model to encode, in a space-efficient manner, entities where the number of attributes (properties, parameters) that can be used to describe them is potentially vast, but the number that will actually apply to a given entity is relatively modest. Such entities correspond to the mathematical notion of a sparse matrix. (Wikipedia)