migrations: Add migration for RealmAuditLog ordering.

Because this might impact how past RealmAuditLog-reading migrations
are processed, I think it's better to this one as an actual Django
migration, even though it has no actual SQL to run.
This commit is contained in:
Tim Abbott 2024-06-26 17:12:38 -07:00
parent 673a01ea0c
commit 47db96d730
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
# Generated by Django 5.0.6 on 2024-06-27 00:12
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("zerver", "0540_remove_realm_create_private_stream_policy"),
]
operations = [
migrations.AlterModelOptions(
name="realmauditlog",
options={"ordering": ["id"]},
),
]