init
This commit is contained in:
commit
4fcbdaa4db
21 changed files with 589 additions and 0 deletions
17
server/migrations/0002_alter_dragon_unique_together.py
Normal file
17
server/migrations/0002_alter_dragon_unique_together.py
Normal 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')},
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue