mirror of https://github.com/zulip/zulip.git
11 lines
239 B
Python
11 lines
239 B
Python
|
from django.db import migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
dependencies = [
|
||
|
("zerver", "0575_alter_directmessagegroup_group_size"),
|
||
|
("zerver", "0576_backfill_imageattachment"),
|
||
|
]
|
||
|
|
||
|
operations = []
|