Source code for election_day.models.election.list_result

from onegov.core.orm import Base
from onegov.core.orm.mixins import TimestampMixin
from onegov.core.orm.types import UUID
from sqlalchemy import Column
from sqlalchemy import ForeignKey
from sqlalchemy import Integer
from sqlalchemy.orm import relationship
from uuid import uuid4


from typing import TYPE_CHECKING
if TYPE_CHECKING:
    import uuid
    from onegov.election_day.models import ElectionResult
    from onegov.election_day.models import List


[docs] class ListResult(Base, TimestampMixin): """ The election result of a list in a single political entity. """
[docs] __tablename__ = 'list_results'
#: identifies the list
[docs] id: 'Column[uuid.UUID]' = Column( UUID, # type:ignore[arg-type] primary_key=True, default=uuid4 )
# votes
[docs] votes: 'Column[int]' = Column(Integer, nullable=False, default=lambda: 0)
#: the election result id this result belongs to
[docs] election_result_id: 'Column[uuid.UUID]' = Column( UUID, # type:ignore[arg-type] ForeignKey('election_results.id', ondelete='CASCADE'), nullable=False )
#: the election result this result belongs to
[docs] election_result: 'relationship[ElectionResult]' = relationship( 'ElectionResult', back_populates='list_results' )
#: the list id this result belongs to
[docs] list_id: 'Column[uuid.UUID]' = Column( UUID, # type:ignore[arg-type] ForeignKey('lists.id', ondelete='CASCADE'), nullable=False )
#: the list this result belongs to
[docs] list: 'relationship[List]' = relationship( 'List', back_populates='results' )