25 lines
582 B
Python
25 lines
582 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11 on 2018-07-10 18:10
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("webapp", "0046_auto_20180710_2041"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name="event",
|
|
name="signupForm",
|
|
),
|
|
migrations.AddField(
|
|
model_name="event",
|
|
name="signupForm",
|
|
field=models.ManyToManyField(blank=True, to="webapp.SignupForm"),
|
|
),
|
|
]
|