0011_auto_20170816_2249.py 631 B

123456789101112131415161718192021
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.11.2 on 2017-08-16 20:49
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. import django.db.models.deletion
  6. class Migration(migrations.Migration):
  7. dependencies = [
  8. ('backoffice', '0010_auto_20170816_2249'),
  9. ]
  10. operations = [
  11. migrations.AlterField(
  12. model_name='reference',
  13. name='authority',
  14. field=models.ForeignKey(blank=True, help_text="L'instance qui à produit cette référence", null=True, on_delete=django.db.models.deletion.CASCADE, to='backoffice.Authority'),
  15. ),
  16. ]