refactor: replace SQLModel with QueryModel in various models and update query methods

This commit is contained in:
Abhimanyu Saharan
2026-02-09 02:04:14 +05:30
parent e19e47106b
commit 228b99bc9b
40 changed files with 413 additions and 419 deletions

View File

@@ -1,7 +1,7 @@
from __future__ import annotations
from sqlmodel import SQLModel
from app.models.base import QueryModel
class TenantScoped(SQLModel, table=False):
class TenantScoped(QueryModel, table=False):
pass