24 lines
630 B
Python
24 lines
630 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.5 on 2017-02-05 18:40
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("program", "0019_auto_20170205_1940")]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="eventinstance",
|
|
name="location",
|
|
field=models.ForeignKey(
|
|
on_delete=django.db.models.deletion.CASCADE,
|
|
related_name="eventinstances",
|
|
to="program.EventLocation",
|
|
),
|
|
)
|
|
]
|