migrations: Merge 0517 as a no-op.

Migration 0517 migration was already run as 0497 on `main`, but was
accidentally omitted on 8.x until this point.

Merge the 0517 migration into the migration history.  It is included
as a no-op in `main` because it has already run as 0497.
This commit is contained in:
Alex Vandiver
2024-05-06 14:28:38 +00:00
committed by Tim Abbott
parent 4efcc33dc2
commit 3662a6ded9
2 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
from django.db import migrations
# See 0517 for the history of this migration merge commit.
class Migration(migrations.Migration):
dependencies = [
("zerver", "0516_fix_confirmation_preregistrationusers"),
("zerver", "0517_resort_edit_history"),
]
operations = []