Removed redundant stuff
This commit is contained in:
parent
b6f4eddb42
commit
f5b274a678
5 changed files with 1 additions and 43 deletions
|
|
@ -7,14 +7,6 @@ from app.database import (
|
|||
)
|
||||
from app.models.project import Project
|
||||
|
||||
# For now, this is a manifest for the project model architecture:
|
||||
|
||||
# A project consists of:
|
||||
# ID (Autoincrement num, required),
|
||||
# Parent (Num, optional, if this field contains a number (not none or 0), it is considered a child project of project with ID = num)
|
||||
# Title (Required, text),
|
||||
# Content (Optional, for now is string text but needs to store full Markdown including images in the future)
|
||||
|
||||
|
||||
def get_all():
|
||||
return get_from_database(Project)
|
||||
|
|
|
|||
Loading…
Reference in a new issue