mirror of
https://github.com/Hopiu/django.git
synced 2026-05-08 23:54:42 +00:00
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12048 bcc190cf-cafb-0310-a4f2-bffc1f526a37
8 lines
289 B
Python
8 lines
289 B
Python
from django.db import models
|
|
from django.contrib.localflavor.us.models import USStateField
|
|
|
|
class Place(models.Model):
|
|
state = USStateField(blank=True)
|
|
state_req = USStateField()
|
|
state_default = USStateField(default="CA", blank=True)
|
|
name = models.CharField(max_length=20)
|