2024-04-05 23:01:15 +00:00
|
|
|
from sqlalchemy.orm import relationship
|
|
|
|
|
2024-04-01 04:43:12 +00:00
|
|
|
from database import Base
|
|
|
|
from sqlalchemy import Column, Integer, String, Boolean, ForeignKey
|
|
|
|
|
|
|
|
|
2024-04-05 23:01:15 +00:00
|
|
|
class Post(Base):
|
2024-04-01 04:43:12 +00:00
|
|
|
__tablename__ = 'posts'
|
|
|
|
|
|
|
|
id = Column(Integer, primary_key=True)
|
|
|
|
thread_id = Column(Integer, ForeignKey("threads.id"))
|
|
|
|
author = Column(String)
|
|
|
|
title = Column(String)
|
|
|
|
content = Column(String)
|
|
|
|
|
|
|
|
|
2024-04-05 23:01:15 +00:00
|
|
|
class Thread(Base):
|
2024-04-01 04:43:12 +00:00
|
|
|
__tablename__ = 'threads'
|
|
|
|
|
|
|
|
id = Column(Integer, primary_key=True)
|
|
|
|
author = Column(String)
|
|
|
|
title = Column(String)
|
2024-04-01 21:26:01 +00:00
|
|
|
content = Column(String)
|