mirror of
https://github.com/zulip/zulip.git
synced 2025-11-06 15:03:34 +00:00
This adds an organization description field to the Realm model, as well as an input field to the organization settings template. Added three tests. Set the max length of the field to 100 characters. Fixes #3962.
21 lines
462 B
Python
21 lines
462 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.5 on 2017-03-19 19:06
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('zerver', '0062_default_timezone'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='realm',
|
|
name='description',
|
|
field=models.TextField(max_length=100, null=True),
|
|
),
|
|
]
|