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

Fixed #33509 -- Added "(no-op)" to sqlmigrate output for operations without SQL statement.

This commit is contained in:
Adam Johnson
2022-02-10 20:16:33 +00:00
committed by Mariusz Felisiak
parent f15f7d395c
commit 6f453cd298
4 changed files with 63 additions and 11 deletions

View File

@@ -0,0 +1,10 @@
from django.db import migrations
class Migration(migrations.Migration):
initial = True
operations = [
migrations.RunSQL(sql="", reverse_sql=""),
]