Skip to content
Snippets Groups Projects
Commit 2499370d authored by Stefano Zacchiroli's avatar Stefano Zacchiroli
Browse files

models: add migration to on_delete=protect

parent 260de319
No related branches found
No related tags found
No related merge requests found
# -*- coding: utf-8 -*-
# Generated by Django 1.11.23 on 2019-09-25 09:06
from __future__ import unicode_literals
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('deposit', '0016_auto_20190507_1408'),
]
operations = [
migrations.AlterField(
model_name='deposit',
name='parent',
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.PROTECT, to='deposit.Deposit'),
),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment