minimal working
This commit is contained in:
8
app/models.py
Normal file
8
app/models.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from sqlalchemy import Integer, String
|
||||
from app import db
|
||||
from sqlalchemy.orm import Mapped, mapped_column
|
||||
|
||||
class Reply(db.Model):
|
||||
id: Mapped[int] = mapped_column(primary_key=True)
|
||||
attendence: Mapped[bool]
|
||||
comment: Mapped[str]
|
Reference in New Issue
Block a user