You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
field=models.CharField(blank=True, choices=[('feet', 'feet'), ('miles', 'miles')], help_text='What distance unit the relevant field uses.', max_length=20, null=True),
18
+
),
19
+
migrations.AlterField(
20
+
model_name='creatureaction',
21
+
name='legendary_cost',
22
+
field=models.SmallIntegerField(blank=True, default=None, help_text='null if not legendary, else, the number of legendary actions this costs.', null=True),
23
+
),
24
+
migrations.AlterField(
25
+
model_name='creatureactionattack',
26
+
name='long_range_ft',
27
+
field=models.FloatField(blank=True, help_text='Used to measure distance.', null=True, validators=[django.core.validators.MinValueValidator(0)]),
28
+
),
29
+
migrations.AlterField(
30
+
model_name='creatureactionattack',
31
+
name='range_ft',
32
+
field=models.FloatField(blank=True, help_text='Used to measure distance.', null=True, validators=[django.core.validators.MinValueValidator(0)]),
33
+
),
34
+
migrations.AlterField(
35
+
model_name='creatureactionattack',
36
+
name='reach_ft',
37
+
field=models.FloatField(blank=True, help_text='Used to measure distance.', null=True, validators=[django.core.validators.MinValueValidator(0)]),
field=models.CharField(blank=True, choices=[('feet', 'feet'), ('miles', 'miles')], help_text='What distance unit the relevant field uses.', max_length=20, null=True),
field=models.CharField(blank=True, choices=[('feet', 'feet'), ('miles', 'miles')], help_text='What distance unit the relevant field uses.', max_length=20, null=True),
0 commit comments