Files
zulip/zerver/migrations/0036_rename_subdomain_to_string_id.py
Anders Kaseorg 4bd28f7ae6 migrations: Remove unused imports.
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
2019-02-02 17:01:04 -08:00

18 lines
359 B
Python

# -*- coding: utf-8 -*-
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('zerver', '0035_realm_message_retention_period_days'),
]
operations = [
migrations.RenameField(
model_name='realm',
old_name='subdomain',
new_name='string_id',
),
]