|
| 1 | +# Generated by Django 3.2.20 on 2024-08-04 18:09 |
| 2 | + |
| 3 | +import django.core.validators |
| 4 | +from django.db import migrations, models |
| 5 | + |
| 6 | + |
| 7 | +class Migration(migrations.Migration): |
| 8 | + |
| 9 | + dependencies = [ |
| 10 | + ('api_v2', '0110_auto_20240804_1331'), |
| 11 | + ] |
| 12 | + |
| 13 | + operations = [ |
| 14 | + migrations.AlterField( |
| 15 | + model_name='creature', |
| 16 | + name='ability_score_charisma', |
| 17 | + field=models.SmallIntegerField(default=0, help_text='Integer representing the charisma ability.', validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(50)]), |
| 18 | + ), |
| 19 | + migrations.AlterField( |
| 20 | + model_name='creature', |
| 21 | + name='ability_score_constitution', |
| 22 | + field=models.SmallIntegerField(default=0, help_text='Integer representing the constitution ability.', validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(50)]), |
| 23 | + ), |
| 24 | + migrations.AlterField( |
| 25 | + model_name='creature', |
| 26 | + name='ability_score_dexterity', |
| 27 | + field=models.SmallIntegerField(default=0, help_text='Integer representing the dexterity ability.', validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(50)]), |
| 28 | + ), |
| 29 | + migrations.AlterField( |
| 30 | + model_name='creature', |
| 31 | + name='ability_score_intelligence', |
| 32 | + field=models.SmallIntegerField(default=0, help_text='Integer representing the intelligence ability.', validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(50)]), |
| 33 | + ), |
| 34 | + migrations.AlterField( |
| 35 | + model_name='creature', |
| 36 | + name='ability_score_strength', |
| 37 | + field=models.SmallIntegerField(default=0, help_text='Integer representing the strength ability.', validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(50)]), |
| 38 | + ), |
| 39 | + migrations.AlterField( |
| 40 | + model_name='creature', |
| 41 | + name='ability_score_wisdom', |
| 42 | + field=models.SmallIntegerField(default=0, help_text='Integer representing the wisdom ability.', validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(50)]), |
| 43 | + ), |
| 44 | + migrations.AlterField( |
| 45 | + model_name='creature', |
| 46 | + name='experience_points_integer', |
| 47 | + field=models.IntegerField(blank=True, help_text='Optional override for calculated XP based on CR.', null=True, validators=[django.core.validators.MinValueValidator(0)]), |
| 48 | + ), |
| 49 | + ] |
0 commit comments