19 lines
449 B
Python
19 lines
449 B
Python
|
# Generated by Django 2.2 on 2019-04-11 13:14
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('passbook_app_gw', '0002_auto_20190321_1521'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='applicationgatewayprovider',
|
||
|
name='authentication_header',
|
||
|
field=models.TextField(blank=True, default='X-Remote-User'),
|
||
|
),
|
||
|
]
|