8 lines
212 B
Python
8 lines
212 B
Python
from sqlalchemy import Column, ForeignKey, Integer, String, Text
|
|
from app.api.db.database import Base
|
|
|
|
class Comments(Base):
|
|
__tablename__ = 'comments'
|
|
|
|
id = Column(Integer, primary_key=True, index=True)
|