Skip to content

Commit

Permalink
Migrated space over to distance field.
Browse files Browse the repository at this point in the history
  • Loading branch information
augustjohnson committed Oct 9, 2024
1 parent 09ed0da commit b27fec4
Show file tree
Hide file tree
Showing 2 changed files with 3,040 additions and 3,021 deletions.
19 changes: 19 additions & 0 deletions api_v2/migrations/0004_alter_size_space_diameter.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 5.1.1 on 2024-10-09 16:39

import django.core.validators
from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('api_v2', '0003_rename_long_range_ft_creatureactionattack_long_range_and_more'),
]

operations = [
migrations.AlterField(
model_name='size',
name='space_diameter',
field=models.FloatField(blank=True, help_text='Used to measure distance.', null=True, validators=[django.core.validators.MinValueValidator(0)]),
),
]
Loading

0 comments on commit b27fec4

Please sign in to comment.