From 101c75ecb3d1dc9355949be0116e32b3014844c3 Mon Sep 17 00:00:00 2001 From: luissian Date: Mon, 26 Aug 2024 14:56:23 +0200 Subject: [PATCH] Included the missing renaming for dashboard --- dashboard/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/models.py b/dashboard/models.py index 62b9408d..04b96d7b 100644 --- a/dashboard/models.py +++ b/dashboard/models.py @@ -14,7 +14,7 @@ class GraphicJsonFile(models.Model): creation_date = models.DateTimeField(auto_now=True, null=True, blank=True) class Meta: - db_table = "graphic_json_file" + db_table = "dashboard_graphic_json_file" def __str__(self): return "%s" % (self.graphic_name)