allow manual ordering of consulting partner
This commit is contained in:
parent
e82f563ca3
commit
1daa288cdd
4 changed files with 39 additions and 5 deletions
|
@ -0,0 +1,22 @@
|
|||
# Generated by Django 5.1.5 on 2025-03-14 13:56
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("services", "0020_alter_cloudprovider_options_cloudprovider_order"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name="consultingpartner",
|
||||
options={"ordering": ["order"]},
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name="consultingpartner",
|
||||
name="order",
|
||||
field=models.IntegerField(default=0),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue