Use core-owned scope storage

This commit is contained in:
2026-07-10 17:33:43 +02:00
parent 2bc57fefe3
commit 7e8df56723
4 changed files with 17 additions and 44 deletions

View File

@@ -1,33 +1,6 @@
from __future__ import annotations
import uuid
from typing import Any
from sqlalchemy import Boolean, JSON, String, Text
from sqlalchemy.orm import Mapped, mapped_column, relationship
from govoplan_core.db.base import Base, TimestampMixin
def new_uuid() -> str:
return str(uuid.uuid4())
class Tenant(Base, TimestampMixin):
__tablename__ = "tenancy_tenants"
id: Mapped[str] = mapped_column(String(36), primary_key=True, default=new_uuid)
slug: Mapped[str] = mapped_column(String(100), unique=True, nullable=False, index=True)
name: Mapped[str] = mapped_column(String(255), nullable=False)
description: Mapped[str | None] = mapped_column(Text)
default_locale: Mapped[str] = mapped_column(String(20), default="en", nullable=False)
settings: Mapped[dict[str, Any]] = mapped_column(JSON, default=dict, nullable=False)
allow_custom_groups: Mapped[bool | None] = mapped_column(Boolean, nullable=True)
allow_custom_roles: Mapped[bool | None] = mapped_column(Boolean, nullable=True)
allow_api_keys: Mapped[bool | None] = mapped_column(Boolean, nullable=True)
is_active: Mapped[bool] = mapped_column(Boolean, default=True, nullable=False)
users: Mapped[list["User"]] = relationship("User", back_populates="tenant", cascade="all, delete-orphan")
from govoplan_core.tenancy.scope import Tenant, new_uuid
__all__ = ["Tenant", "new_uuid"]