init
This commit is contained in:
commit
4fcbdaa4db
21 changed files with 589 additions and 0 deletions
26
server/migrations/0001_initial.py
Normal file
26
server/migrations/0001_initial.py
Normal file
|
@ -0,0 +1,26 @@
|
|||
# Generated by Django 5.1.3 on 2025-04-11 15:26
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Dragon',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('name', models.CharField(max_length=10)),
|
||||
('origin', models.CharField(max_length=10)),
|
||||
('color', models.IntegerField(default=-1)),
|
||||
('hat', models.IntegerField(default=-1)),
|
||||
('shirt', models.IntegerField(default=-1)),
|
||||
('decor', models.IntegerField(default=-1)),
|
||||
],
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue