From 3e9b5f54494bf1b60614902534493ddfe4cf73bc Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Thu, 4 Mar 2021 21:12:51 +0100 Subject: [PATCH] stages/authenticator_webauthn: add missing migration --- .../migrations/0004_auto_20210304_1850.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 authentik/stages/authenticator_webauthn/migrations/0004_auto_20210304_1850.py diff --git a/authentik/stages/authenticator_webauthn/migrations/0004_auto_20210304_1850.py b/authentik/stages/authenticator_webauthn/migrations/0004_auto_20210304_1850.py new file mode 100644 index 000000000..e223ff7d4 --- /dev/null +++ b/authentik/stages/authenticator_webauthn/migrations/0004_auto_20210304_1850.py @@ -0,0 +1,20 @@ +# Generated by Django 3.1.7 on 2021-03-04 18:50 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ("authentik_stages_authenticator_webauthn", "0003_webauthndevice_confirmed"), + ] + + operations = [ + migrations.AlterModelOptions( + name="webauthndevice", + options={ + "verbose_name": "WebAuthn Device", + "verbose_name_plural": "WebAuthn Devices", + }, + ), + ]