squas migrations
This commit is contained in:
parent
7a038252ea
commit
6c8e813575
3 changed files with 16 additions and 36 deletions
|
@ -1,4 +1,4 @@
|
|||
# Generated by Django 5.1.5 on 2025-02-28 13:07
|
||||
# Generated by Django 5.1.5 on 2025-02-28 13:29
|
||||
|
||||
import django.db.models.deletion
|
||||
from django.db import migrations, models
|
||||
|
@ -6,6 +6,12 @@ from django.db import migrations, models
|
|||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
replaces = [
|
||||
("services", "0011_reusabletext_textsnippet"),
|
||||
("services", "0012_remove_serviceoffering_slug"),
|
||||
("services", "0013_alter_plan_description"),
|
||||
]
|
||||
|
||||
dependencies = [
|
||||
("services", "0010_reusabletext_remove_planprice_currency_and_more"),
|
||||
]
|
||||
|
@ -22,4 +28,13 @@ class Migration(migrations.Migration):
|
|||
to="services.reusabletext",
|
||||
),
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name="serviceoffering",
|
||||
name="slug",
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name="plan",
|
||||
name="description",
|
||||
field=models.TextField(blank=True, null=True),
|
||||
),
|
||||
]
|
|
@ -1,17 +0,0 @@
|
|||
# Generated by Django 5.1.5 on 2025-02-28 13:24
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("services", "0011_reusabletext_textsnippet"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name="serviceoffering",
|
||||
name="slug",
|
||||
),
|
||||
]
|
|
@ -1,18 +0,0 @@
|
|||
# Generated by Django 5.1.5 on 2025-02-28 13:26
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("services", "0012_remove_serviceoffering_slug"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name="plan",
|
||||
name="description",
|
||||
field=models.TextField(blank=True, null=True),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue