28 lines
986 B
Python
28 lines
986 B
Python
# Generated by Django 2.1.4 on 2018-12-10 12:13
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('passbook_audit', '0002_auto_20181210_1039'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='auditentry',
|
|
options={'verbose_name': 'Audit Entry', 'verbose_name_plural': 'Audit Entries'},
|
|
),
|
|
migrations.RenameField(
|
|
model_name='auditentry',
|
|
old_name='context',
|
|
new_name='_context',
|
|
),
|
|
migrations.AlterField(
|
|
model_name='auditentry',
|
|
name='action',
|
|
field=models.TextField(choices=[('login', 'login'), ('login_failed', 'login_failed'), ('logout', 'logout'), ('authorize_application', 'authorize_application'), ('suspicious_request', 'suspicious_request'), ('sign_up', 'sign_up'), ('password_reset', 'password_reset'), ('invitation_used', 'invitation_used')]),
|
|
),
|
|
]
|