feat: add reports table schema for preset reporting

This commit is contained in:
2026-04-27 15:30:51 +08:00
parent 5087f3370d
commit b94c29da61
5 changed files with 1691 additions and 0 deletions
+1
View File
@@ -7,3 +7,4 @@ export * from "./performanceEntries"
export * from "./gamePlatformSupport"
export * from "./gameComments"
export * from "./savedGames"
export * from "./reports"
+40
View File
@@ -0,0 +1,40 @@
import {
text,
pgEnum,
pgTable,
timestamp,
uniqueIndex,
} from "drizzle-orm/pg-core"
import { performanceEntries } from "./performanceEntries"
import { user } from "./auth"
export const reportReasonEnum = pgEnum("report_reason", [
"inaccurate",
"spam",
"inappropriate",
"other",
])
export const reportStatusEnum = pgEnum("report_status", [
"open",
"reviewed",
"dismissed",
])
export const reports = pgTable("reports", {
id: text("id")
.primaryKey()
.$defaultFn(() => crypto.randomUUID()),
entryId: text("entry_id")
.notNull()
.references(() => performanceEntries.id, { onDelete: "cascade" }),
reporterId: text("reporter_id")
.notNull()
.references(() => user.id, { onDelete: "cascade" }),
reason: reportReasonEnum("reason").notNull(),
details: text("details"),
status: reportStatusEnum("status").default("open").notNull(),
createdAt: timestamp("created_at").defaultNow().notNull(),
}, (table) => [
uniqueIndex("reports_entry_reporter_unique").on(table.entryId, table.reporterId),
])