django-axes/axes/migrations/0006_remove_accesslog_trusted.py
Aleksi Häkli e24f0453bb
Remove reduntant AccessLog.trusted flag
All attempts that are logged are marked as trusted
and no other attempts are created in the code,
so having a flag that also uses a database index
is redundant and unnecessary.

Signed-off-by: Aleksi Häkli <aleksi.hakli@iki.fi>
2019-03-13 16:07:25 +02:00

17 lines
339 B
Python

# Generated by Django 2.0.4 on 2019-03-13 08:55
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('axes', '0005_remove_accessattempt_trusted'),
]
operations = [
migrations.RemoveField(
model_name='accesslog',
name='trusted',
),
]