-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
+# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+#
from django.db import migrations, models
-import jsonfield.fields
class Migration(migrations.Migration):
migrations.AlterField(
model_name='poem',
name='created_from',
- field=jsonfield.fields.JSONField(null=True, verbose_name='extra information', blank=True),
+ field=models.TextField(null=True, verbose_name='extra information', blank=True),
),
migrations.AlterField(
model_name='poem',