소스 검색

[core] Fix for missing axes migration

This one is causing test failures locally
Johan Åhlén 2 년 전
부모
커밋
0ae016de10
1개의 변경된 파일17개의 추가작업 그리고 0개의 파일을 삭제
  1. 17 0
      desktop/core/ext-py3/django-axes-5.13.0/axes/migrations/0008_remove_accesslog_trusted.py

+ 17 - 0
desktop/core/ext-py3/django-axes-5.13.0/axes/migrations/0008_remove_accesslog_trusted.py

@@ -0,0 +1,17 @@
+# Generated by Django 3.2.16 on 2022-12-15 06:47
+
+from django.db import migrations
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('axes', '0007_add_accesslog_trusted'),
+    ]
+
+    operations = [
+        migrations.RemoveField(
+            model_name='accesslog',
+            name='trusted',
+        ),
+    ]