-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding fields to SpellCastingOption.
- Loading branch information
1 parent
730a662
commit c33c12d
Showing
10 changed files
with
16,799 additions
and
5,589 deletions.
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
api_v2/migrations/0010_spellcastingoption_concentration_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Generated by Django 5.1.2 on 2024-10-22 13:58 | ||
|
||
import django.core.validators | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('api_v2', '0009_merge_20241010_0144'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='spellcastingoption', | ||
name='concentration', | ||
field=models.BooleanField(blank=True, default=False, help_text='Whether the effect requires concentration to be maintained.', null=True), | ||
), | ||
migrations.AddField( | ||
model_name='spellcastingoption', | ||
name='shape_size', | ||
field=models.FloatField(blank=True, help_text='Used to measure distance.', null=True, validators=[django.core.validators.MinValueValidator(0)]), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.