django-eav2/tests/models.py
2010-09-07 08:33:42 +00:00

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