remove service level and country

This commit is contained in:
Tobias Brunner 2025-01-28 10:06:56 +01:00
parent 9993844057
commit f69f7fb755
No known key found for this signature in database
12 changed files with 32 additions and 123 deletions

View file

@ -0,0 +1,27 @@
# Generated by Django 5.1.5 on 2025-01-28 09:03
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("services", "0007_consultingpartner_service_consulting_partners"),
]
operations = [
migrations.RemoveField(
model_name="service",
name="countries",
),
migrations.RemoveField(
model_name="service",
name="service_level",
),
migrations.DeleteModel(
name="Country",
),
migrations.DeleteModel(
name="ServiceLevel",
),
]