bornhack-website/src/program/migrations/0009_auto_20160827_0752.py

19 lines
411 B
Python
Raw Normal View History

2016-08-27 08:29:26 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.9.6 on 2016-08-27 07:52
2017-01-30 11:16:07 +00:00
2016-08-27 08:29:26 +00:00
from django.db import migrations, models
class Migration(migrations.Migration):
2019-06-16 12:32:24 +00:00
dependencies = [("program", "0008_auto_20160808_1747")]
2016-08-27 08:29:26 +00:00
operations = [
migrations.AlterField(
2019-06-16 12:32:24 +00:00
model_name="event",
name="days",
field=models.ManyToManyField(blank=True, to="camps.Day"),
)
2016-08-27 08:29:26 +00:00
]