28 lines
845 B
Python
28 lines
845 B
Python
"""Board group model used to organize boards inside organizations."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from datetime import datetime
|
|
from uuid import UUID, uuid4
|
|
|
|
from sqlmodel import Field
|
|
|
|
from app.core.time import utcnow
|
|
from app.models.tenancy import TenantScoped
|
|
|
|
RUNTIME_ANNOTATION_TYPES = (datetime,)
|
|
|
|
|
|
class BoardGroup(TenantScoped, table=True):
|
|
"""Logical grouping container for boards within an organization."""
|
|
|
|
__tablename__ = "board_groups" # pyright: ignore[reportAssignmentType]
|
|
|
|
id: UUID = Field(default_factory=uuid4, primary_key=True)
|
|
organization_id: UUID = Field(foreign_key="organizations.id", index=True)
|
|
name: str
|
|
slug: str = Field(index=True)
|
|
description: str | None = None
|
|
created_at: datetime = Field(default_factory=utcnow)
|
|
updated_at: datetime = Field(default_factory=utcnow)
|