Associate users with their invites

This commit is contained in:
Mouse Reeve
2021-04-01 17:19:29 -07:00
parent ec8eb01a0f
commit 634509a7f3
3 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
# Generated by Django 3.1.6 on 2021-04-02 00:14
from django.conf import settings
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("bookwyrm", "0059_user_preferred_timezone"),
]
operations = [
migrations.AddField(
model_name="siteinvite",
name="invitees",
field=models.ManyToManyField(
related_name="invitees", to=settings.AUTH_USER_MODEL
),
),
]