summaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorJelle van der Waa <jelle@vdwaa.nl>2017-05-22 20:27:10 +0200
committerJelle van der Waa <jelle@vdwaa.nl>2017-05-24 09:06:28 +0200
commita215f25efad5c37ac6e55715b619a25f452e06cc (patch)
tree4fd232850787496ce47d5cf778c4e10cfda1a92b /packages
parent08eef67d6aaf5a56c8df7ad4e692b319543c375c (diff)
downloadarchweb-a215f25efad5c37ac6e55715b619a25f452e06cc.tar.gz
archweb-a215f25efad5c37ac6e55715b619a25f452e06cc.zip
releng: Fix django warnings
Fixes warnings for releng.Test.modules and releng.Test.rollback_modules (fields.W340) null has no effect on ManyToManyField.
Diffstat (limited to 'packages')
-rw-r--r--packages/migrations/0003_auto_20170524_0704.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/packages/migrations/0003_auto_20170524_0704.py b/packages/migrations/0003_auto_20170524_0704.py
new file mode 100644
index 00000000..997f329e
--- /dev/null
+++ b/packages/migrations/0003_auto_20170524_0704.py
@@ -0,0 +1,19 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('packages', '0002_auto_20160731_0556'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='flagrequest',
+ name='user_email',
+ field=models.EmailField(max_length=254, verbose_name=b'email address'),
+ ),
+ ]