alphax/app/db/schema.py
2026-05-16 14:52:10 +08:00

10 lines
215 B
Python

"""Schema/init-oriented DB API for the PostgreSQL runtime."""
from app.db.postgres_connection import apply_migrations, connect as get_conn
def init_db():
apply_migrations()
__all__ = ["get_conn", "init_db"]