From a654e2e627ece2f94a44faa04a6aa70ff031bdb6 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Mon, 2 Mar 2026 09:59:18 -0600 Subject: [PATCH] fix merge issue --- frigate/models.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/frigate/models.py b/frigate/models.py index bb172861c..d927a12c8 100644 --- a/frigate/models.py +++ b/frigate/models.py @@ -89,14 +89,6 @@ class ExportCase(Model): updated_at = DateTimeField() -class ExportCase(Model): - id = CharField(null=False, primary_key=True, max_length=30) - name = CharField(index=True, max_length=100) - description = TextField(null=True) - created_at = DateTimeField() - updated_at = DateTimeField() - - class Export(Model): id = CharField(null=False, primary_key=True, max_length=30) camera = CharField(index=True, max_length=20)