mirror of
https://github.com/django/django.git
synced 2025-07-23 05:05:17 +00:00
7 lines
208 B
Python
7 lines
208 B
Python
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)
|