mirror of https://github.com/django/django.git
Moved choices inside of a test model per coding style.
Follow up to 3a4558b84f
.
This commit is contained in:
parent
55490ac746
commit
638d5ea375
|
@ -1,12 +1,11 @@
|
|||
from django.db import models
|
||||
|
||||
|
||||
class Article(models.Model):
|
||||
CHOICES = (
|
||||
(1, 'first'),
|
||||
(2, 'second'),
|
||||
)
|
||||
|
||||
|
||||
class Article(models.Model):
|
||||
headline = models.CharField(max_length=100, default='Default headline')
|
||||
pub_date = models.DateTimeField()
|
||||
status = models.IntegerField(blank=True, null=True, choices=CHOICES)
|
||||
|
|
Loading…
Reference in New Issue