20 lines
487 B
Python
20 lines
487 B
Python
# Generated by Django 3.0 on 2020-10-02 22:57
|
|
|
|
from django.db import migrations, models
|
|
import django_cryptography.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('recoverdir', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='persletter',
|
|
name='text',
|
|
field=django_cryptography.fields.encrypt(models.CharField(blank=True, default='', max_length=100000, null=True)),
|
|
),
|
|
]
|