File size: 514 Bytes
085ce5c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Generated by Django 4.2.16 on 2024-11-12 22:50

from django.db import migrations, models


class Migration(migrations.Migration):
    dependencies = [
        ("authentication", "0005_userdata_refcode"),
    ]

    operations = [
        migrations.AddField(
            model_name="userdata",
            name="activatedCoupons",
            field=models.ManyToManyField(
                blank=True, related_name="activatedCoupons", to="authentication.coupon"
            ),
        ),
    ]