mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 01:16:27 +00:00
Change type ldap user
This commit is contained in:
parent
84d48437f7
commit
9be7e8a00a
1 changed files with 29 additions and 0 deletions
29
users/migrations/0037_auto_20161028_1906.py
Normal file
29
users/migrations/0037_auto_20161028_1906.py
Normal file
|
@ -0,0 +1,29 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('users', '0036_auto_20161022_2146'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='ldapserviceuser',
|
||||
name='dn',
|
||||
field=models.CharField(serialize=False, primary_key=True, max_length=200),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='ldapuser',
|
||||
name='dn',
|
||||
field=models.CharField(serialize=False, primary_key=True, max_length=200),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='ldapusergroup',
|
||||
name='dn',
|
||||
field=models.CharField(serialize=False, primary_key=True, max_length=200),
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue