Files
zulip/zerver/migrations/0040_realm_authentication_methods.py
Anders Kaseorg 11741543da python: Reformat with Black, except quotes.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2021-02-12 13:11:19 -08:00

20 lines
475 B
Python

import bitfield.models
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('zerver', '0039_realmalias_drop_uniqueness'),
]
operations = [
migrations.AddField(
model_name='realm',
name='authentication_methods',
field=bitfield.models.BitField(
['Google', 'Email', 'GitHub', 'LDAP', 'Dev', 'RemoteUser'], default=2147483647
),
),
]