52 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Generated by Django 2.1.7 on 2019-02-16 09:13
 | |
| 
 | |
| import uuid
 | |
| 
 | |
| import django.db.models.deletion
 | |
| from django.conf import settings
 | |
| from django.db import migrations, models
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     initial = True
 | |
| 
 | |
|     dependencies = [
 | |
|         migrations.swappable_dependency(settings.AUTH_USER_MODEL),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.CreateModel(
 | |
|             name='AuditEntry',
 | |
|             fields=[
 | |
|                 ('uuid', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
 | |
|                 ('action', 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_created', 'invitation_created'), ('invitation_used', 'invitation_used')])),
 | |
|                 ('date', models.DateTimeField(auto_now_add=True)),
 | |
|                 ('app', models.TextField()),
 | |
|                 ('_context', models.TextField()),
 | |
|                 ('request_ip', models.GenericIPAddressField()),
 | |
|                 ('created', models.DateTimeField(auto_now_add=True)),
 | |
|                 ('user', models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, to=settings.AUTH_USER_MODEL)),
 | |
|             ],
 | |
|             options={
 | |
|                 'verbose_name': 'Audit Entry',
 | |
|                 'verbose_name_plural': 'Audit Entries',
 | |
|             },
 | |
|         ),
 | |
|         migrations.CreateModel(
 | |
|             name='LoginAttempt',
 | |
|             fields=[
 | |
|                 ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
 | |
|                 ('created', models.DateField(auto_now_add=True)),
 | |
|                 ('last_updated', models.DateTimeField(auto_now=True)),
 | |
|                 ('target_uid', models.CharField(max_length=254)),
 | |
|                 ('request_ip', models.GenericIPAddressField()),
 | |
|                 ('attempts', models.IntegerField(default=1)),
 | |
|             ],
 | |
|         ),
 | |
|         migrations.AlterUniqueTogether(
 | |
|             name='loginattempt',
 | |
|             unique_together={('target_uid', 'request_ip', 'created')},
 | |
|         ),
 | |
|     ]
 | 
