You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
389 B
12 lines
389 B
from sqlalchemy import Column, UUID, ForeignKey, Integer, Text |
|
from apiApp.database import Base |
|
import uuid |
|
|
|
|
|
class ConclusionVersion(Base): |
|
__tablename__ = "conclusion_version" |
|
|
|
id = Column(UUID(as_uuid=True), primary_key=True, default=uuid.uuid4) |
|
conclusion_id = Column(UUID(as_uuid=True), ForeignKey("conclusion.id")) |
|
version = Column(Integer) |
|
content = Column(Text) |