diff options
Diffstat (limited to 'pyblackbird_cc/resources/migrations')
-rw-r--r-- | pyblackbird_cc/resources/migrations/0010_alter_resource_age_range.py | 18 | ||||
-rw-r--r-- | pyblackbird_cc/resources/migrations/0011_alter_resource_curriculum.py | 18 |
2 files changed, 36 insertions, 0 deletions
diff --git a/pyblackbird_cc/resources/migrations/0010_alter_resource_age_range.py b/pyblackbird_cc/resources/migrations/0010_alter_resource_age_range.py new file mode 100644 index 0000000..49c7a2c --- /dev/null +++ b/pyblackbird_cc/resources/migrations/0010_alter_resource_age_range.py @@ -0,0 +1,18 @@ +# Generated by Django 5.0.4 on 2024-07-11 14:47 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('resources', '0009_alter_resource_feature_slot'), + ] + + operations = [ + migrations.AlterField( + model_name='resource', + name='age_range', + field=models.CharField(choices=[('Preschool (3-4yrs)', 'Preschool (3-4yrs)'), ('Nursery (2-5yrs)', 'Nursery (2-5yrs)'), ('Reception (4-5yrs)', 'Reception (4-5yrs)'), ('Year 1 (5-6yrs)', 'Year 1 (5-6yrs)'), ('Year 2 (6-7yrs)', 'Year 2 (6-7yrs)'), ('Early Years (0-5yrs)', 'Early Years (0-5yrs)'), ('Keystage 1 (5-7yrs)', 'Keystage 1 (5-7yrs)'), ('Keystage 2 (7-11yrs)', 'Keystage 2 (7-11yrs)'), ('Age not applicable', 'Age not applicable')], default='5-7', max_length=20), + ), + ] diff --git a/pyblackbird_cc/resources/migrations/0011_alter_resource_curriculum.py b/pyblackbird_cc/resources/migrations/0011_alter_resource_curriculum.py new file mode 100644 index 0000000..5e1b193 --- /dev/null +++ b/pyblackbird_cc/resources/migrations/0011_alter_resource_curriculum.py @@ -0,0 +1,18 @@ +# Generated by Django 5.0.4 on 2024-07-11 14:50 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('resources', '0010_alter_resource_age_range'), + ] + + operations = [ + migrations.AlterField( + model_name='resource', + name='curriculum', + field=models.CharField(blank=True, choices=[('No curriculum', 'No curriculum'), ('English', 'English'), ('Scottish', 'Scottish')], default='English', max_length=20, null=True), + ), + ] |