-
-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
convert squashed migration to regular; update dependents
- Loading branch information
Showing
3 changed files
with
62 additions
and
41 deletions.
There are no files selected for viewing
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
41 changes: 41 additions & 0 deletions
41
amy/workshops/migrations/0266_alter_trainingrequest_default_for_text_fields.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,41 @@ | ||
# Generated by Django 3.2.20 on 2023-10-30 09:20 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("workshops", "0265_add_member_code_and_override"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="trainingrequest", | ||
name="nonprofit_teaching_experience", | ||
field=models.CharField( | ||
blank=True, | ||
default="", | ||
help_text="Provide details or leave blank if this doesn't apply to you.", | ||
max_length=255, | ||
verbose_name="I have been an active contributor to other volunteer or non-profit groups with significant teaching or training components.", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="trainingrequest", | ||
name="previous_experience_explanation", | ||
field=models.TextField( | ||
blank=True, | ||
default="", | ||
verbose_name="Description of your previous experience in teaching", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="trainingrequest", | ||
name="previous_training_explanation", | ||
field=models.TextField( | ||
blank=True, | ||
default="", | ||
verbose_name="Description of your previous training in teaching", | ||
), | ||
), | ||
] |
28 changes: 0 additions & 28 deletions
28
amy/workshops/migrations/0269_alter_trainingrequest_default_for_text_fields.py
This file was deleted.
Oops, something went wrong.