From 1cb08bc7783d6fa13ed383b11ba207254262a489 Mon Sep 17 00:00:00 2001 From: fullsizemalt <106900403+fullsizemalt@users.noreply.github.com> Date: Tue, 30 Dec 2025 19:27:46 -0800 Subject: [PATCH] fix: add sqlmodel import to migration --- backend/alembic/versions/0b6d33dcfe94_add_video_tables.py | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/alembic/versions/0b6d33dcfe94_add_video_tables.py b/backend/alembic/versions/0b6d33dcfe94_add_video_tables.py index 70116d2..0ba7155 100644 --- a/backend/alembic/versions/0b6d33dcfe94_add_video_tables.py +++ b/backend/alembic/versions/0b6d33dcfe94_add_video_tables.py @@ -9,6 +9,7 @@ from typing import Sequence, Union from alembic import op import sqlalchemy as sa +import sqlmodel # revision identifiers, used by Alembic.