2010-10-12 11:33:19 +08:00
|
|
|
from django.db import models
|
2012-12-13 19:33:11 +08:00
|
|
|
from django.utils.encoding import python_2_unicode_compatible
|
2010-10-12 11:33:19 +08:00
|
|
|
|
2013-11-03 05:34:05 +08:00
|
|
|
|
2012-12-13 19:33:11 +08:00
|
|
|
@python_2_unicode_compatible
|
2010-10-12 11:33:19 +08:00
|
|
|
class Person(models.Model):
|
|
|
|
name = models.CharField(max_length=100)
|
2012-12-13 19:33:11 +08:00
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.name
|