38 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 3.1.2 on 2020-10-05 21:39
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ("passbook_audit", "0004_auto_20200921_1829"),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AlterField(
 | 
						|
            model_name="event",
 | 
						|
            name="action",
 | 
						|
            field=models.TextField(
 | 
						|
                choices=[
 | 
						|
                    ("login", "Login"),
 | 
						|
                    ("login_failed", "Login Failed"),
 | 
						|
                    ("logout", "Logout"),
 | 
						|
                    ("user_write", "User Write"),
 | 
						|
                    ("suspicious_request", "Suspicious Request"),
 | 
						|
                    ("password_set", "Password Set"),
 | 
						|
                    ("invitation_created", "Invite Created"),
 | 
						|
                    ("invitation_used", "Invite Used"),
 | 
						|
                    ("authorize_application", "Authorize Application"),
 | 
						|
                    ("source_linked", "Source Linked"),
 | 
						|
                    ("impersonation_started", "Impersonation Started"),
 | 
						|
                    ("impersonation_ended", "Impersonation Ended"),
 | 
						|
                    ("model_created", "Model Created"),
 | 
						|
                    ("model_updated", "Model Updated"),
 | 
						|
                    ("model_deleted", "Model Deleted"),
 | 
						|
                    ("custom_", "Custom Prefix"),
 | 
						|
                ]
 | 
						|
            ),
 | 
						|
        ),
 | 
						|
    ]
 |