Merged develop into feature/VBV-649-country-sorting
This commit is contained in:
commit
e06895f921
|
|
@ -0,0 +1,25 @@
|
||||||
|
# Generated by Django 3.2.20 on 2024-02-20 09:58
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
dependencies = [
|
||||||
|
("core", "0006_auto_20240125_0915"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name="country",
|
||||||
|
options={
|
||||||
|
"ordering": ["order_id", "country_id"],
|
||||||
|
"verbose_name": "Country",
|
||||||
|
"verbose_name_plural": "Countries",
|
||||||
|
},
|
||||||
|
),
|
||||||
|
migrations.AddField(
|
||||||
|
model_name="country",
|
||||||
|
name="order_id",
|
||||||
|
field=models.FloatField(default=20),
|
||||||
|
),
|
||||||
|
]
|
||||||
Loading…
Reference in New Issue