1
0
mirror of https://github.com/django/django.git synced 2025-10-24 06:06:09 +00:00

Fixed #24529 -- Allowed double squashing of migrations.

Co-authored-by: Raphael Gaschignard <raphael@rtpg.co>
This commit is contained in:
Georgi Yanchev
2025-01-20 09:12:09 +01:00
committed by Sarah Boyce
parent 322785b08c
commit 64b1ac7292
14 changed files with 291 additions and 22 deletions

View File

@@ -0,0 +1,7 @@
from django.db import migrations
class Migration(migrations.Migration):
replaces = [("migrations", "2_auto")]
dependencies = [("migrations", "1_auto")]
operations = [migrations.RunPython(migrations.RunPython.noop)]