django-eav2/tests/models.py
2010-09-23 13:42:30 +03:00

12 lines
200 B
Python

from django.db import models
class Patient(models.Model):
class Meta:
app_label = 'eav'
name = models.CharField(max_length=20)
def __unicode__(self):
return self.name