26 lines
616 B
Python
26 lines
616 B
Python
|
# Generated by Django 2.2.6 on 2019-11-07 15:05
|
||
|
|
||
|
from django.db import migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('passbook_sources_saml', '0001_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterModelOptions(
|
||
|
name='samlsource',
|
||
|
options={'verbose_name': 'SAML Source', 'verbose_name_plural': 'SAML Sources'},
|
||
|
),
|
||
|
migrations.RemoveField(
|
||
|
model_name='samlsource',
|
||
|
name='acs_url',
|
||
|
),
|
||
|
migrations.RemoveField(
|
||
|
model_name='samlsource',
|
||
|
name='slo_url',
|
||
|
),
|
||
|
]
|