X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/c226012e4114e09fd37cd384a2aada77476815cd..HEAD:/src/social/migrations/0001_initial.py diff --git a/src/social/migrations/0001_initial.py b/src/social/migrations/0001_initial.py index 63523cd1c..33fe94945 100644 --- a/src/social/migrations/0001_initial.py +++ b/src/social/migrations/0001_initial.py @@ -1,7 +1,8 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - +# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Wolne Lektury. See NOTICE for more information. +# from django.db import models, migrations +import django.db.models.deletion class Migration(migrations.Migration): @@ -27,7 +28,7 @@ class Migration(migrations.Migration): ('image_link', models.URLField(null=True, verbose_name='link', blank=True)), ('image_license', models.CharField(max_length=255, null=True, verbose_name='license name', blank=True)), ('image_license_link', models.URLField(null=True, verbose_name='license link', blank=True)), - ('book', models.ForeignKey(verbose_name='book', blank=True, to='catalogue.Book', null=True)), + ('book', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, verbose_name='book', blank=True, to='catalogue.Book', null=True)), ], options={ 'ordering': ('vip', 'text'),