Fix migration error (unique app configuragion keys)

This commit is contained in:
Raphael Michel
2017-10-02 17:40:31 +02:00
parent 26f258c6cf
commit 50c595e3d6
2 changed files with 2 additions and 2 deletions

View File

@@ -33,7 +33,7 @@ class Migration(migrations.Migration):
name='AppConfiguration',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('key', models.CharField(db_index=True, max_length=190, unique=True)),
('key', models.CharField(db_index=True, max_length=190)),
('all_items', models.BooleanField(default=True)),
('allow_search', models.BooleanField(default=True)),
('show_info', models.BooleanField(default=True)),