Skip to content

Commit

Permalink
Add migration to PR #152
Browse files Browse the repository at this point in the history
  • Loading branch information
vEnhance committed Jan 17, 2023
1 parent 7931f42 commit df35a48
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions roster/migrations/0098_alter_unitinquiry_action_type.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Generated by Django 4.1.4 on 2023-01-17 13:32

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("roster", "0097_remove_registrationcontainer_num_preps"),
]

operations = [
migrations.AlterField(
model_name="unitinquiry",
name="action_type",
field=models.CharField(
choices=[
("INQ_ACT_UNLOCK", "Unlock now"),
("INQ_ACT_APPEND", "Add for later"),
("INQ_ACT_DROP", "Drop"),
("INQ_ACT_LOCK", "Lock (Drop + Add for later)"),
],
help_text="Describe the action you want to make.",
max_length=15,
),
),
]

0 comments on commit df35a48

Please sign in to comment.