Initial commit with Phase 0 Scaffolding
This commit is contained in:
parent
b393607602
commit
c545d4b17d
51 changed files with 7064 additions and 4 deletions
13
backend/app/models/__init__.py
Normal file
13
backend/app/models/__init__.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
"""
|
||||
SQLAlchemy models for PaperJet.
|
||||
|
||||
All models use UUIDv4 string primary keys (except the singleton settings row).
|
||||
Timestamps are stored as ISO8601 TEXT columns.
|
||||
"""
|
||||
|
||||
from app.models.settings import Settings
|
||||
from app.models.document import Document
|
||||
from app.models.annotation_state import AnnotationState
|
||||
from app.models.version import Version
|
||||
|
||||
__all__ = ["Settings", "Document", "AnnotationState", "Version"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue