-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Enhancement] Order operation fields by awx order instead by name
- Loading branch information
1 parent
44e5c2a
commit 5cd71bc
Showing
3 changed files
with
36 additions
and
2 deletions.
There are no files selected for viewing
26 changes: 26 additions & 0 deletions
26
service_catalog/migrations/0038_alter_towersurveyfield_unique_together_and_more.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,26 @@ | ||
# Generated by Django 4.2.6 on 2023-12-08 14:20 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('service_catalog', '0037_alter_request_options_remove_approvalstep_next_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterUniqueTogether( | ||
name='towersurveyfield', | ||
unique_together=set(), | ||
), | ||
migrations.AddField( | ||
model_name='towersurveyfield', | ||
name='position', | ||
field=models.IntegerField(default=0), | ||
), | ||
migrations.AlterUniqueTogether( | ||
name='towersurveyfield', | ||
unique_together={('operation', 'position', 'variable')}, | ||
), | ||
] |
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
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