From 48e13b7f558118d85d329982119dec1188ce6586 Mon Sep 17 00:00:00 2001 From: Gabriel Pelouze Date: Thu, 30 Nov 2023 10:57:12 +0100 Subject: [PATCH] add migrations for keycloakauth removal --- .../migrations/0006_delete_keycloakauth.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 vreapis/virtual_labs/migrations/0006_delete_keycloakauth.py diff --git a/vreapis/virtual_labs/migrations/0006_delete_keycloakauth.py b/vreapis/virtual_labs/migrations/0006_delete_keycloakauth.py new file mode 100644 index 0000000..9cf6630 --- /dev/null +++ b/vreapis/virtual_labs/migrations/0006_delete_keycloakauth.py @@ -0,0 +1,16 @@ +# Generated by Django 4.2.7 on 2023-11-30 09:55 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('virtual_labs', '0005_virtuallabinstance'), + ] + + operations = [ + migrations.DeleteModel( + name='KeyCloakAuth', + ), + ]