mirror of
https://github.com/django/django.git
synced 2025-08-16 00:30:47 +00:00
[1.7.x] Making SQL management commands migration aware.
This commit is contained in:
parent
c5afdc3d73
commit
b6a960cd1d
7 changed files with 107 additions and 0 deletions
10
tests/commands_sql_migrations/models.py
Normal file
10
tests/commands_sql_migrations/models.py
Normal file
|
@ -0,0 +1,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)
|
Loading…
Add table
Add a link
Reference in a new issue