summaryrefslogtreecommitdiff
path: root/tests/regressiontests/commands_sql/models.py
blob: 089aa96f300128ec8c429bb3923048b0bc737690 (plain)
1
2
3
4
5
6
7
from django.db import models
from django.utils.encoding import python_2_unicode_compatible


@python_2_unicode_compatible
class Book(models.Model):
    title = models.CharField(max_length=100, db_index=True)