-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update migrations from previous days work
- Loading branch information
Showing
5 changed files
with
67 additions
and
6 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
app/config_management/migrations/0003_alter_configgroups_options_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,21 @@ | ||
# Generated by Django 5.0.7 on 2024-08-17 08:05 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('config_management', '0002_configgrouphosts_configgroupsoftware'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name='configgroups', | ||
options={'verbose_name_plural': 'Config Groups'}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='configgroupsoftware', | ||
options={'ordering': ['-action', 'software'], 'verbose_name_plural': 'Config Group Softwares'}, | ||
), | ||
] |
21 changes: 21 additions & 0 deletions
21
app/core/migrations/0003_alter_manufacturer_options_alter_notes_options.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,21 @@ | ||
# Generated by Django 5.0.7 on 2024-08-17 08:05 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('core', '0002_notes'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name='manufacturer', | ||
options={'ordering': ['name'], 'verbose_name_plural': 'Manufacturers'}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='notes', | ||
options={'ordering': ['-created'], 'verbose_name_plural': 'Notes'}, | ||
), | ||
] |
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
17 changes: 17 additions & 0 deletions
17
app/settings/migrations/0003_alter_externallink_options.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,17 @@ | ||
# Generated by Django 5.0.7 on 2024-08-17 08:05 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('settings', '0002_externallink'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name='externallink', | ||
options={'verbose_name_plural': 'External Links'}, | ||
), | ||
] |