Initial Commit
This commit is contained in:
commit
715224653d
58 changed files with 7760 additions and 0 deletions
28
gurps_character/migrations/0001_initial.py
Normal file
28
gurps_character/migrations/0001_initial.py
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
# Generated by Django 5.0.1 on 2024-01-08 10:25
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
initial = True
|
||||
|
||||
dependencies = []
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name="GURPSCharacter",
|
||||
fields=[
|
||||
(
|
||||
"id",
|
||||
models.BigAutoField(
|
||||
auto_created=True,
|
||||
primary_key=True,
|
||||
serialize=False,
|
||||
verbose_name="ID",
|
||||
),
|
||||
),
|
||||
("uuid", models.CharField(max_length=128, unique=True)),
|
||||
("name", models.CharField(max_length=255, unique=True)),
|
||||
],
|
||||
),
|
||||
]
|
||||
18
gurps_character/migrations/0002_gurpscharacter_details.py
Normal file
18
gurps_character/migrations/0002_gurpscharacter_details.py
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 5.0.1 on 2024-01-10 07:52
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("gurps_character", "0001_initial"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="gurpscharacter",
|
||||
name="details",
|
||||
field=models.JSONField(default={}),
|
||||
preserve_default=False,
|
||||
),
|
||||
]
|
||||
28
gurps_character/migrations/0003_gamesystem.py
Normal file
28
gurps_character/migrations/0003_gamesystem.py
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
# Generated by Django 5.0.1 on 2024-01-16 07:12
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("gurps_character", "0002_gurpscharacter_details"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name="GameSystem",
|
||||
fields=[
|
||||
(
|
||||
"id",
|
||||
models.BigAutoField(
|
||||
auto_created=True,
|
||||
primary_key=True,
|
||||
serialize=False,
|
||||
verbose_name="ID",
|
||||
),
|
||||
),
|
||||
("name", models.CharField(max_length=255, unique=True)),
|
||||
("description", models.TextField(null=True)),
|
||||
],
|
||||
),
|
||||
]
|
||||
0
gurps_character/migrations/__init__.py
Normal file
0
gurps_character/migrations/__init__.py
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
gurps_character/migrations/__pycache__/__init__.cpython-312.pyc
Normal file
BIN
gurps_character/migrations/__pycache__/__init__.cpython-312.pyc
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue