19 lines
431 B
Python
19 lines
431 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'),
|
|
),
|
|
]
|