This repository has been archived by the owner on Feb 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adjust Facility Type list options per comment on #634 (comment)
- Loading branch information
Kelly Innes
committed
Jul 10, 2019
1 parent
df94afc
commit d67149d
Showing
2 changed files
with
45 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Generated by Django 2.0.13 on 2019-07-10 19:22 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('api', '0025_auto_20190708_2040'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='facilityclaim', | ||
name='facility_type', | ||
field=models.CharField(blank=True, choices=[('Cut and Sew / RMG', 'Cut and Sew / RMG'), ('Dyehouse', 'Dyehouse'), ('Embellishments', 'Embellishments'), ('Fabric Mill', 'Fabric Mill'), ('Finishing', 'Finishing'), ('Ginning', 'Ginning'), ('Knitting', 'Knitting'), ('Laundry', 'Laundry'), ('Packing', 'Packing'), ('Scouring', 'Scouring'), ('Screenprinting', 'Screenprinting'), ('Stitching (Shoes)', 'Stitching (Shoes)'), ('Tannery', 'Tannery'), ('Warehouse', 'Warehouse'), ('Weaving', 'Weaving'), ('Other', 'Other')], help_text='The editable facility type for this claim.', max_length=17, null=True, verbose_name='facility type'), | ||
), | ||
migrations.AlterField( | ||
model_name='historicalfacilityclaim', | ||
name='facility_type', | ||
field=models.CharField(blank=True, choices=[('Cut and Sew / RMG', 'Cut and Sew / RMG'), ('Dyehouse', 'Dyehouse'), ('Embellishments', 'Embellishments'), ('Fabric Mill', 'Fabric Mill'), ('Finishing', 'Finishing'), ('Ginning', 'Ginning'), ('Knitting', 'Knitting'), ('Laundry', 'Laundry'), ('Packing', 'Packing'), ('Scouring', 'Scouring'), ('Screenprinting', 'Screenprinting'), ('Stitching (Shoes)', 'Stitching (Shoes)'), ('Tannery', 'Tannery'), ('Warehouse', 'Warehouse'), ('Weaving', 'Weaving'), ('Other', 'Other')], help_text='The editable facility type for this claim.', max_length=17, null=True, verbose_name='facility type'), | ||
), | ||
] |
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