32 lines
781 B
Python
32 lines
781 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11 on 2018-07-10 17:41
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("webapp", "0045_auto_20180710_1901"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name="event",
|
|
name="signupForm",
|
|
),
|
|
migrations.AddField(
|
|
model_name="event",
|
|
name="signupForm",
|
|
field=models.ForeignKey(
|
|
blank=True,
|
|
default=0,
|
|
on_delete=django.db.models.deletion.CASCADE,
|
|
to="webapp.SignupForm",
|
|
),
|
|
preserve_default=False,
|
|
),
|
|
]
|