summaryrefslogtreecommitdiff
path: root/parts/django/tests/regressiontests/admin_ordering/models.py
blob: ad63685b2f3a0f854e997063cdba775f60d7acf0 (plain)
1
2
3
4
5
6
7
8
9
10
# coding: utf-8
from django.db import models

class Band(models.Model):
    name = models.CharField(max_length=100)
    bio = models.TextField()
    rank = models.IntegerField()

    class Meta:
        ordering = ('name',)