From 0126d5596fcba43730ecc7e6cbc0987b12f0640d Mon Sep 17 00:00:00 2001 From: Christian Merten Date: Sun, 9 Mar 2025 18:46:26 +0100 Subject: [PATCH] chore(migrations): add dummy migration for compatibility with django-jet-reboot --- migrations/0002_delete_userdashboardmodule.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 migrations/0002_delete_userdashboardmodule.py diff --git a/migrations/0002_delete_userdashboardmodule.py b/migrations/0002_delete_userdashboardmodule.py new file mode 100644 index 0000000..b351274 --- /dev/null +++ b/migrations/0002_delete_userdashboardmodule.py @@ -0,0 +1,13 @@ +from django.db import models, migrations + + +# this is a dummy migration required for replacing this outdated version +# of jet with the maintained django-jet-reboot package. +class Migration(migrations.Migration): + + dependencies = [ + ('jet', '0001_initial'), + ] + + operations = [ + ]