From ef91a1047a8fa21f68edc2a5139de25b6567ebc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Kervella?= Date: Thu, 26 Apr 2018 18:21:48 +0000 Subject: [PATCH] Add migrations for the fix --- users/migrations/0072_auto_20180426_2021.py | 25 +++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 users/migrations/0072_auto_20180426_2021.py diff --git a/users/migrations/0072_auto_20180426_2021.py b/users/migrations/0072_auto_20180426_2021.py new file mode 100644 index 00000000..f60103e0 --- /dev/null +++ b/users/migrations/0072_auto_20180426_2021.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.7 on 2018-04-26 18:21 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('users', '0071_auto_20180415_1252'), + ] + + operations = [ + migrations.AlterField( + model_name='ban', + name='date_end', + field=models.DateTimeField(), + ), + migrations.AlterField( + model_name='whitelist', + name='date_end', + field=models.DateTimeField(), + ), + ]