From f47212f239eff227d71c664359503595f7b63a82 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Tue, 16 Jul 2019 19:28:45 +0000 Subject: [PATCH] Use BinaryField instead of our own EncryptedTextField which relied on cleartext and ciphertext being the same type. - Legacy-Id: 16472 --- .../migrations/0006_auto_20190716_1216.py | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 ietf/nomcom/migrations/0006_auto_20190716_1216.py diff --git a/ietf/nomcom/migrations/0006_auto_20190716_1216.py b/ietf/nomcom/migrations/0006_auto_20190716_1216.py new file mode 100644 index 000000000..ab355eb2f --- /dev/null +++ b/ietf/nomcom/migrations/0006_auto_20190716_1216.py @@ -0,0 +1,21 @@ +# Copyright The IETF Trust 2019, All Rights Reserved +# -*- coding: utf-8 -*- +# Generated by Django 1.11.22 on 2019-07-16 12:16 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('nomcom', '0005_auto_20181008_0602'), + ] + + operations = [ + migrations.AlterField( + model_name='feedback', + name='comments', + field=models.BinaryField(verbose_name='Comments'), + ), + ]