This commit is contained in:
Gerard Gascón 2025-04-11 20:42:55 +02:00
commit 4fcbdaa4db
21 changed files with 589 additions and 0 deletions

View file

@ -0,0 +1,17 @@
# Generated by Django 5.1.7 on 2025-04-11 16:40
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('server', '0001_initial'),
]
operations = [
migrations.AlterUniqueTogether(
name='dragon',
unique_together={('origin', 'name', 'color', 'shirt', 'hat', 'decor')},
),
]