feat: added comments
Commit / ci (push) Successful in 1m37s
Release / publish (push) Failing after 5m57s

This commit is contained in:
2025-12-10 19:16:18 +01:00
parent 5b8a436b91
commit 2702615b34
10 changed files with 666 additions and 1 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ export const ratings = pgTable('rating', {
.notNull()
.references(() => users.id, { onDelete: 'cascade' }),
rating: real().notNull(),
comment: text(),
comment: text().notNull(),
aktiVersion: integer('akti_version').notNull()
});