diff options
| author | Donald Stufft <donald@stufft.io> | 2013-05-17 18:18:35 -0400 |
|---|---|---|
| committer | Donald Stufft <donald@stufft.io> | 2013-05-23 01:09:22 -0400 |
| commit | 3de1288042f2dc1cb8a2b36ae0fc4d9e0beb6494 (patch) | |
| tree | 39d6fcbd6f52ab17b9d619bccaa74dd222aca8bd /tests/syncdb_signals/models.py | |
| parent | 11b06532f7633478b341c9d1da6d29e9839a4e9a (diff) | |
Fixed #11398 - Added a pre_syncdb signal
Diffstat (limited to 'tests/syncdb_signals/models.py')
| -rw-r--r-- | tests/syncdb_signals/models.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/syncdb_signals/models.py b/tests/syncdb_signals/models.py new file mode 100644 index 0000000000..c41d993e94 --- /dev/null +++ b/tests/syncdb_signals/models.py @@ -0,0 +1,11 @@ +# from django.db import models + + +# class Author(models.Model): +# name = models.CharField(max_length=100) + +# class Meta: +# ordering = ['name'] + +# def __unicode__(self): +# return self.name |
