@@ -59,18 +59,6 @@ class IntentChoices(models.TextChoices):
59
59
)
60
60
OTHER = 'OTHER' , 'Other'
61
61
62
- class HiringChoices (models .TextChoices ):
63
- # Legacy choices
64
- ONE_TO_TEN = '1-10' , '1 to 10'
65
- ELEVEN_TO_FIFTY = '11-50' , '11 to 50'
66
-
67
- # Current choices
68
- ONE_TO_FIVE = '1-5' , '1 to 5'
69
- SIX_TO_FIFTY = '6-50' , '6 to 50'
70
- FIFTY_ONE_TO_ONE_HUNDRED = '51-100' , '51 to 100'
71
- ONE_HUNDRED_ONE_PLUS = '101+' , 'More than 100'
72
- NO_PLANS_TO_HIRE_YET = 'NO_PLANS_TO_HIRE_YET' , 'No plans to hire'
73
-
74
62
class SpendChoices (models .TextChoices ):
75
63
# Legacy choice
76
64
FIVE_HUNDRED_THOUSAND_ONE_TO_ONE_MILLION = '500001-1000000' , '£500,001 - £1,000,000'
@@ -133,7 +121,7 @@ class LandingTimeframeChoices(models.TextChoices):
133
121
)
134
122
proposed_investment_location_none = models .BooleanField (default = None , null = True , blank = True )
135
123
hiring = models .CharField (
136
- max_length = CHAR_FIELD_MAX_LENGTH , choices = HiringChoices . choices , default = '' , blank = True ,
124
+ max_length = CHAR_FIELD_MAX_LENGTH , default = '' , blank = True ,
137
125
)
138
126
spend = models .CharField (
139
127
max_length = CHAR_FIELD_MAX_LENGTH , choices = SpendChoices .choices , default = '' , blank = True ,
0 commit comments