chore: sync GovOPlaN module split state

This commit is contained in:
2026-07-10 12:51:23 +02:00
parent 4c645a421c
commit 2bc57fefe3
14 changed files with 327 additions and 22 deletions

View File

@@ -14,7 +14,7 @@ def new_uuid() -> str:
class Tenant(Base, TimestampMixin):
__tablename__ = "tenants"
__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)