Update README.md

This commit is contained in:
mathiasag7 2023-10-05 14:59:03 +01:00 committed by GitHub
parent ce2b606dc4
commit dffbe60170
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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</a>, 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 <a href="https://django-eav2.rtfd.io">here</a>.
## What is EAV anyway?
> Entityattributevalue 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)