mirror of https://github.com/zulip/zulip.git
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:
parent
4efcc33dc2
commit
3662a6ded9
|
@ -0,0 +1,15 @@
|
|||
from django.db import migrations
|
||||
|
||||
# This migration was already run as 0497 on `main`, but was
|
||||
# accidentally omitted on 8.x until this point. This is left as a
|
||||
# no-op on `main`, since it has either already run -- either as this
|
||||
# migration number, if the user is upgrading from 8.x, or just now as
|
||||
# 0497 if the user upgraded from a prior version.
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("zerver", "0501_delete_dangling_usermessages"),
|
||||
]
|
||||
|
||||
operations = []
|
|
@ -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 = []
|
Loading…
Reference in New Issue