Django 1.9
[prawokultury.git] / contact / migrations / 0002_auto_20190925_1137.py
diff --git a/contact/migrations/0002_auto_20190925_1137.py b/contact/migrations/0002_auto_20190925_1137.py
new file mode 100644 (file)
index 0000000..f79bcd1
--- /dev/null
@@ -0,0 +1,19 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('contact', '0001_initial'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='contact',
+            name='ip',
+            field=models.GenericIPAddressField(default=b'127.0.0.1', verbose_name='IP address'),
+        ),
+    ]