mirror of https://github.com/zulip/zulip.git
16 lines
370 B
Python
16 lines
370 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("zerver", "0038_realm_change_to_community_defaults"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="realmalias",
|
|
name="domain",
|
|
field=models.CharField(max_length=80, db_index=True),
|
|
),
|
|
]
|