1- # Generated by Django 5.2.9 on 2026-01-08 06:17
1+ # Generated by Django 5.2.9 on 2026-02-02 08:15
22
33import apps .tool_picker .models
44import django .core .validators
@@ -26,6 +26,7 @@ class Migration(migrations.Migration):
2626 ('modified_at' , models .DateTimeField (auto_now = True )),
2727 ('name' , models .CharField (max_length = 200 )),
2828 ('description' , models .TextField ()),
29+ ('show_in_help_me_choose' , models .BooleanField (default = False )),
2930 ('created_by' , models .ForeignKey (on_delete = django .db .models .deletion .PROTECT , related_name = '%(class)s_created' , to = settings .AUTH_USER_MODEL )),
3031 ('modified_by' , models .ForeignKey (on_delete = django .db .models .deletion .PROTECT , related_name = '%(class)s_modified' , to = settings .AUTH_USER_MODEL )),
3132 ],
@@ -135,7 +136,7 @@ class Migration(migrations.Migration):
135136 ('created_at' , models .DateTimeField (auto_now_add = True )),
136137 ('modified_at' , models .DateTimeField (auto_now = True )),
137138 ('description' , models .TextField ()),
138- ('ordinal_value' , django_choices_field .fields .IntegerChoicesField (blank = True , choices = [(10 , 'n/a' ), (11 , '1 ' ), (12 , '2 ' ), (13 , '3 ' ), (14 , '4 ' )], choices_enum = apps .tool_picker .models .OrdinalTypeEnum , null = True )),
139+ ('ordinal_value' , django_choices_field .fields .IntegerChoicesField (blank = True , choices = [(100 , 'n/a' ), (1 , 'One ' ), (2 , 'Two ' ), (3 , 'Three ' ), (4 , 'Four ' )], choices_enum = apps .tool_picker .models .OrdinalTypeEnum , null = True )),
139140 ('created_by' , models .ForeignKey (on_delete = django .db .models .deletion .PROTECT , related_name = '%(class)s_created' , to = settings .AUTH_USER_MODEL )),
140141 ('modified_by' , models .ForeignKey (on_delete = django .db .models .deletion .PROTECT , related_name = '%(class)s_modified' , to = settings .AUTH_USER_MODEL )),
141142 ('question' , models .ForeignKey (on_delete = django .db .models .deletion .CASCADE , related_name = 'tool_answers' , to = 'tool_picker.question' )),
@@ -154,7 +155,7 @@ class Migration(migrations.Migration):
154155 name = 'UserAnswer' ,
155156 fields = [
156157 ('id' , models .BigAutoField (auto_created = True , primary_key = True , serialize = False , verbose_name = 'ID' )),
157- ('ordinal_value' , django_choices_field .fields .IntegerChoicesField (blank = True , choices = [(10 , 'n/a' ), (11 , '1 ' ), (12 , '2 ' ), (13 , '3 ' ), (14 , '4 ' )], choices_enum = apps .tool_picker .models .OrdinalTypeEnum , null = True )),
158+ ('ordinal_value' , django_choices_field .fields .IntegerChoicesField (blank = True , choices = [(100 , 'n/a' ), (1 , 'One ' ), (2 , 'Two ' ), (3 , 'Three ' ), (4 , 'Four ' )], choices_enum = apps .tool_picker .models .OrdinalTypeEnum , null = True )),
158159 ('question' , models .ForeignKey (on_delete = django .db .models .deletion .CASCADE , related_name = 'user_answers' , to = 'tool_picker.question' )),
159160 ('selected_options' , models .ManyToManyField (blank = True , related_name = 'user_answers' , to = 'tool_picker.checkboxoption' )),
160161 ('submission' , models .ForeignKey (on_delete = django .db .models .deletion .CASCADE , related_name = 'answers' , to = 'tool_picker.usersubmission' )),
0 commit comments