mirror of https://github.com/zulip/zulip.git
32 lines
784 B
Python
32 lines
784 B
Python
# Generated by Django 1.11.26 on 2020-01-29 17:30
|
|
|
|
import bitfield.models
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("zerver", "0268_add_userpresence_realm_timestamp_index"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="realm",
|
|
name="authentication_methods",
|
|
field=bitfield.models.BitField(
|
|
[
|
|
"Google",
|
|
"Email",
|
|
"GitHub",
|
|
"LDAP",
|
|
"Dev",
|
|
"RemoteUser",
|
|
"AzureAD",
|
|
"SAML",
|
|
"GitLab",
|
|
],
|
|
default=2147483647,
|
|
),
|
|
),
|
|
]
|