21 lines
594 B
Python
21 lines
594 B
Python
# Generated by Django 5.2.7 on 2025-11-24 01:00
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('animations', '0002_puzzlepointsvalue'),
|
|
('submissions', '0012_alter_puzzleresponse_validated_area_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='steamcollectionitem',
|
|
name='points_value',
|
|
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, to='animations.puzzlepointsvalue'),
|
|
),
|
|
]
|