chore: remove the duplicate migration (#2953)

This commit is contained in:
Nikhil
2025-04-12 22:54:41 +05:30
committed by GitHub
parent 0e670f0e60
commit 2aa7411aa1

View File

@@ -1,27 +0,0 @@
# Generated by Django 4.2.18 on 2025-02-28 14:13
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("db", "0092_alter_deprecateddashboardwidget_unique_together_and_more"),
]
operations = [
migrations.AddField(
model_name="page",
name="moved_to_page",
field=models.UUIDField(blank=True, null=True),
),
migrations.AddField(
model_name="page",
name="moved_to_project",
field=models.UUIDField(blank=True, null=True),
),
migrations.AddField(
model_name="pageversion",
name="sub_pages_data",
field=models.JSONField(blank=True, default=dict),
),
]