send signal for new app name to avoid exception during install

This commit is contained in:
j 2013-07-03 16:14:56 +02:00
parent ce16c93fb4
commit 59f2e8da01
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ class Migration(SchemaMigration):
('name_sort', self.gf('django.db.models.fields.CharField')(max_length=255)),
('description_sort', self.gf('django.db.models.fields.CharField')(max_length=512)),
))
db.send_create_signal('file', ['File'])
db.send_create_signal('document', ['File'])
# Adding unique constraint on 'File', fields ['user', 'name', 'extension']
db.create_unique('file_file', ['user_id', 'name', 'extension'])