base of sqlalchemy alembic

This commit is contained in:
2026-01-10 13:54:54 -05:00
parent b87f6b0b34
commit 0109167b10
9 changed files with 410 additions and 2 deletions

8
python/orm/__init__.py Normal file
View File

@@ -0,0 +1,8 @@
"""ORM package exports."""
from __future__ import annotations
from python.orm.base import RichieBase, TableBase
from python.orm.temp import Temp
__all__ = ["RichieBase", "TableBase", "Temp"]