2021-09-03 16:01:31 +00:00
|
|
|
from typing import List
|
|
|
|
from datetime import datetime
|
|
|
|
|
2021-10-12 19:38:12 +00:00
|
|
|
from sqlalchemy import Column, Integer, String, ForeignKey, DateTime, Boolean
|
2021-09-05 08:56:15 +00:00
|
|
|
from sqlalchemy.orm import relationship
|
2021-09-03 16:01:31 +00:00
|
|
|
|
|
|
|
from orm.base import Base
|
|
|
|
|
|
|
|
class CommentRating(Base):
|
|
|
|
__tablename__ = "comment_rating"
|
|
|
|
|
|
|
|
id = None
|
|
|
|
comment_id = Column(ForeignKey('comment.id'), primary_key = True)
|
2021-10-13 17:46:30 +00:00
|
|
|
createdBy = Column(ForeignKey('user.id'), primary_key = True)
|
|
|
|
createdAt: str = Column(DateTime, nullable=False, default = datetime.now, comment="Timestamp")
|
2021-09-03 16:01:31 +00:00
|
|
|
value = Column(Integer)
|
|
|
|
|
|
|
|
class Comment(Base):
|
2021-09-05 08:56:15 +00:00
|
|
|
__tablename__ = 'comment'
|
2021-09-03 16:01:31 +00:00
|
|
|
|
2021-09-05 08:56:15 +00:00
|
|
|
author: int = Column(ForeignKey("user.id"), nullable=False, comment="Sender")
|
2021-10-12 19:38:12 +00:00
|
|
|
body: str = Column(String, nullable=False, comment="Comment Body")
|
2021-09-05 08:56:15 +00:00
|
|
|
createdAt = Column(DateTime, nullable=False, default = datetime.now, comment="Created at")
|
|
|
|
updatedAt = Column(DateTime, nullable=True, comment="Updated at")
|
2021-10-15 10:00:26 +00:00
|
|
|
updatedBy = Column(ForeignKey("user.id"), nullable=True, comment="Last Editor")
|
2021-09-05 08:56:15 +00:00
|
|
|
deletedAt = Column(DateTime, nullable=True, comment="Deleted at")
|
|
|
|
deletedBy = Column(ForeignKey("user.id"), nullable=True, comment="Deleted by")
|
2021-11-21 11:04:38 +00:00
|
|
|
shout: int = Column(ForeignKey("shout.id"), nullable=False, comment="Shout ID")
|
|
|
|
replyTo: int = Column(ForeignKey("comment.id"), nullable=True, comment="comment ID")
|
2021-09-03 16:01:31 +00:00
|
|
|
ratings = relationship(CommentRating, foreign_keys=CommentRating.comment_id)
|
|
|
|
old_id: str = Column(String, nullable = True)
|
2021-10-13 17:46:30 +00:00
|
|
|
old_thread: str = Column(String, nullable = True)
|
2021-09-05 08:56:15 +00:00
|
|
|
|
2021-09-03 16:01:31 +00:00
|
|
|
|
2021-09-05 08:56:15 +00:00
|
|
|
# TODO: work in progress, udpate this code
|