-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb_models.py
30 lines (21 loc) · 868 Bytes
/
db_models.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
"""
Some would say that ORM models shouldn't be treated as entities, because they're not "pure".
But pragmatically, they function as entities very well. Especially with FastAPI.
"""
import datetime
from sqlalchemy import DateTime, func
from sqlalchemy.orm import DeclarativeBase, Mapped, mapped_column
from sqlalchemy.sql import expression
class Base(DeclarativeBase):
"""Base class for SQL Alchemy tables."""
class Note(Base):
"""Notes table."""
__tablename__ = "notes"
# TODO make this a GUID
id: Mapped[int] = mapped_column(primary_key=True)
creation_date: Mapped[datetime.datetime] = mapped_column(
DateTime(timezone=True), server_default=func.now()
)
contents: Mapped[str]
category: Mapped[str] = mapped_column(server_default="")
is_deleted: Mapped[bool] = mapped_column(server_default=expression.false())