From 95e084886722d94d1ebd299fb9eeec3657a18b67 Mon Sep 17 00:00:00 2001 From: Edward Oliveira Date: Wed, 21 Sep 2022 12:19:28 -0300 Subject: [PATCH] HOT-FIX: remove tabela speedinfo --- sapl/base/migrations/0054_auto_20220921_1217.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 sapl/base/migrations/0054_auto_20220921_1217.py diff --git a/sapl/base/migrations/0054_auto_20220921_1217.py b/sapl/base/migrations/0054_auto_20220921_1217.py new file mode 100644 index 000000000..c728c9e03 --- /dev/null +++ b/sapl/base/migrations/0054_auto_20220921_1217.py @@ -0,0 +1,14 @@ +# Generated by Django 2.2.28 on 2022-09-21 15:17 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('base', '0053_auto_20220919_1705'), + ] + + operations = [ + migrations.RunSQL("DROP TABLE IF EXISTS speedinfo_viewprofiler"), + ]