mirror of
https://github.com/zulip/zulip.git
synced 2025-11-05 06:23:38 +00:00
33 lines
785 B
Python
33 lines
785 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,
|
|
),
|
|
),
|
|
]
|