phase 3.1

This commit is contained in:
Danilo Reyes
2025-11-01 23:33:52 -06:00
parent da4892cc30
commit a95a4c091a
25 changed files with 1214 additions and 27 deletions

View File

@@ -1,5 +1,18 @@
"""Database models."""
from app.database.models.user import User
from app.database.models.board import Board
from app.database.models.image import Image
from app.database.models.board_image import BoardImage
from app.database.models.group import Group
from app.database.models.share_link import ShareLink
from app.database.models.comment import Comment
# Import all models here for Alembic autogenerate
# Models will be created in separate phases
__all__ = [
"User",
"Board",
"Image",
"BoardImage",
"Group",
"ShareLink",
"Comment",
]