Skip to content

Commit f47212f

Browse files
committed
Use BinaryField instead of our own EncryptedTextField which relied on cleartext and ciphertext being the same type.
- Legacy-Id: 16472
1 parent ad1821f commit f47212f

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Copyright The IETF Trust 2019, All Rights Reserved
2+
# -*- coding: utf-8 -*-
3+
# Generated by Django 1.11.22 on 2019-07-16 12:16
4+
from __future__ import unicode_literals
5+
6+
from django.db import migrations, models
7+
8+
9+
class Migration(migrations.Migration):
10+
11+
dependencies = [
12+
('nomcom', '0005_auto_20181008_0602'),
13+
]
14+
15+
operations = [
16+
migrations.AlterField(
17+
model_name='feedback',
18+
name='comments',
19+
field=models.BinaryField(verbose_name='Comments'),
20+
),
21+
]

0 commit comments

Comments
 (0)