mirror of
https://github.com/jazzband/django-eav2.git
synced 2026-03-16 22:40:26 +00:00
12 lines
234 B
Python
12 lines
234 B
Python
from django.db import models
|
|
|
|
from ..utils import EavRegistry
|
|
|
|
class Patient(models.Model):
|
|
class Meta:
|
|
app_label = 'eav_ng'
|
|
|
|
name = models.CharField(max_length=20)
|
|
|
|
def __unicode__(self):
|
|
return self.name
|