This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2019-10-11 10:53:48 +00:00
|
|
|
# Generated by Django 2.2.6 on 2019-10-11 08:39
|
|
|
|
|
|
|
|
import django.core.validators
|
|
|
|
import django.db.models.deletion
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2019-12-31 11:51:16 +00:00
|
|
|
("passbook_sources_ldap", "0003_auto_20191011_0825"),
|
2019-10-11 10:53:48 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterField(
|
2019-12-31 11:51:16 +00:00
|
|
|
model_name="ldapsource",
|
|
|
|
name="server_uri",
|
|
|
|
field=models.TextField(
|
|
|
|
validators=[
|
|
|
|
django.core.validators.URLValidator(schemes=["ldap", "ldaps"])
|
|
|
|
]
|
|
|
|
),
|
2019-10-11 10:53:48 +00:00
|
|
|
),
|
|
|
|
migrations.AlterField(
|
2019-12-31 11:51:16 +00:00
|
|
|
model_name="ldapsource",
|
|
|
|
name="sync_parent_group",
|
|
|
|
field=models.ForeignKey(
|
|
|
|
blank=True,
|
|
|
|
default=None,
|
|
|
|
null=True,
|
|
|
|
on_delete=django.db.models.deletion.SET_DEFAULT,
|
|
|
|
to="passbook_core.Group",
|
|
|
|
),
|
2019-10-11 10:53:48 +00:00
|
|
|
),
|
|
|
|
]
|