2019-02-02 23:53:20 +01:00
|
|
|
from django.db import migrations
|
2016-10-26 18:13:43 +02:00
|
|
|
|
2020-01-14 21:59:46 +01:00
|
|
|
|
2016-10-26 18:13:43 +02:00
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2021-02-12 08:20:45 +01:00
|
|
|
("zerver", "0035_realm_message_retention_period_days"),
|
2016-10-26 18:13:43 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.RenameField(
|
2021-02-12 08:20:45 +01:00
|
|
|
model_name="realm",
|
|
|
|
old_name="subdomain",
|
|
|
|
new_name="string_id",
|
2016-10-26 18:13:43 +02:00
|
|
|
),
|
|
|
|
]
|