1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/mipilin synced 2025-05-10 23:33:07 +00:00

Today is Journal Day

Signed-off-by: roxwize <rae@roxwize.xyz>
This commit is contained in:
Rae 5e 2025-03-01 13:17:13 -05:00
parent f7e44cddca
commit 927193c102
Signed by: rae
GPG key ID: 5B1A0FAB9BAB81EE
14 changed files with 742 additions and 55 deletions

View file

@ -35,7 +35,8 @@ export const journalEntries = pgTable("journal_entries", {
title: varchar({ length: 64 }).default("").notNull(),
entry: varchar({ length: 4096 }).default("").notNull(),
visibility: integer().default(1).notNull(),
date: timestamp().notNull()
date: timestamp().notNull(),
updated: timestamp()
});
export const journalComments = pgTable("journal_comments", {