summaryrefslogtreecommitdiff
path: root/tests/commands_sql/models.py
blob: 78ad7223075b09ff0546800205a8a43e87f83c60 (plain)
1
2
3
4
5
6
7
8
9
10
from django.db import models


class Comment(models.Model):
    pass


class Book(models.Model):
    title = models.CharField(max_length=100, db_index=True)
    comments = models.ManyToManyField(Comment)