Spaces:
Runtime error
Runtime error
# 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" | |
), | |
), | |
] | |