21 lines
461 B
Python
21 lines
461 B
Python
# Generated by Django 2.1.5 on 2020-06-22 20:02
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("webapp", "0065_signup_email"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="event",
|
|
name="signupForm",
|
|
field=models.ManyToManyField(
|
|
blank=True, related_name="event", to="webapp.SignupForm"
|
|
),
|
|
),
|
|
]
|