You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
589 B
Python
24 lines
589 B
Python
# Generated by Django 3.1 on 2020-08-29 20:54
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('lambdainst', '0003_vpnuser_last_core_sync'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='vpnuser',
|
|
name='last_vpn_auth_fail_notice',
|
|
field=models.DateTimeField(blank=True, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name='vpnuser',
|
|
name='notify_vpn_auth_fail',
|
|
field=models.BooleanField(default=True),
|
|
),
|
|
]
|