implemented adding notes to projects and tasks

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2025-07-28 22:50:08 +02:00
parent 325dffa3fe
commit 65df45482f
7 changed files with 55 additions and 20 deletions

View File

@@ -34,7 +34,7 @@ public record Note(long id, String module, long entityId, long authorId, String
USER_ID,authorId,
TEXT,text,
RENDERED,markdown(text),
TIMESTAMP,timestamp
TIMESTAMP,timestamp.withNano(0)
);
}
}