21 lines
466 B
Python
21 lines
466 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.9.4 on 2019-12-10 17:05
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('membership', '0014_remove_customuser_in_ldap'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='customuser',
|
||
|
name='in_ldap',
|
||
|
field=models.BooleanField(default=False),
|
||
|
),
|
||
|
]
|