forked from DGNum/gestioCOF
26 lines
666 B
Python
26 lines
666 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11b1 on 2017-08-07 19:49
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('gestion', '0003_association_and_events'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='event',
|
|
name='location',
|
|
field=models.ForeignKey(
|
|
blank=True, null=True,
|
|
on_delete=django.db.models.deletion.PROTECT,
|
|
to='gestion.Location',
|
|
verbose_name='lieux'
|
|
),
|
|
),
|
|
]
|