You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
559 B
20 lines
559 B
# Generated by Django 5.1 on 2025-07-09 12:55
|
|
|
|
import django.db.models.deletion
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('tournaments', '0131_alter_playerregistration_contact_name'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='purchase',
|
|
name='user',
|
|
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='purchases', to=settings.AUTH_USER_MODEL),
|
|
),
|
|
]
|
|
|