feat: implement project relational data platform

This commit is contained in:
2026-07-30 11:51:46 +08:00
parent 506621966e
commit ada281862e
12 changed files with 2534 additions and 189 deletions

View File

@@ -184,6 +184,9 @@ async def create_project(body: dict, _user: CurrentUser):
)
row = await cur.fetchone()
await conn.commit()
from app.data_platform.schema import ensure_project_database
await ensure_project_database(project_id, tenant_id, display_name)
return row