Revert "Making SQL management commands migration aware."

This reverts commit cb9c9a7b58.
This commit is contained in:
Florian Apolloner 2014-06-01 12:00:09 +02:00
parent 875ce287e2
commit 83e7555ffe
6 changed files with 0 additions and 69 deletions

View file

@ -1,10 +0,0 @@
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)