mirror of https://github.com/zulip/zulip.git
30 lines
751 B
Python
30 lines
751 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('zerver', '0037_disallow_null_string_id'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='realm',
|
|
name='invite_required',
|
|
field=models.BooleanField(default=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='realm',
|
|
name='org_type',
|
|
field=models.PositiveSmallIntegerField(default=2),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='realm',
|
|
name='restricted_to_domain',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|