2026-05-22 14:26:13 +00:00
|
|
|
import { pgTable, timestamp, uuid, varchar, text, integer } from 'drizzle-orm/pg-core';
|
2026-05-22 12:25:41 +00:00
|
|
|
|
|
|
|
|
export const appEvents = pgTable('app_events', {
|
|
|
|
|
id: uuid('id').primaryKey().defaultRandom(),
|
|
|
|
|
name: varchar('name', { length: 120 }).notNull(),
|
|
|
|
|
createdAt: timestamp('created_at', { withTimezone: true }).notNull().defaultNow(),
|
|
|
|
|
});
|
2026-05-22 14:26:13 +00:00
|
|
|
|
|
|
|
|
export const diseaseCatalog = pgTable('disease_catalog', {
|
|
|
|
|
slug: varchar('slug', { length: 80 }).primaryKey(),
|
|
|
|
|
label: varchar('label', { length: 80 }).notNull(),
|
|
|
|
|
commonName: varchar('common_name', { length: 120 }).notNull(),
|
|
|
|
|
summary: text('summary').notNull(),
|
|
|
|
|
description: text('description').notNull(),
|
|
|
|
|
symptoms: text('symptoms').array().notNull(),
|
|
|
|
|
recommendations: text('recommendations').array().notNull(),
|
|
|
|
|
riskLevel: varchar('risk_level', { length: 20 }).notNull(),
|
|
|
|
|
accentColor: varchar('accent_color', { length: 40 }).notNull(),
|
|
|
|
|
displayOrder: integer('display_order').notNull(),
|
|
|
|
|
createdAt: timestamp('created_at', { withTimezone: true }).notNull().defaultNow(),
|
|
|
|
|
updatedAt: timestamp('updated_at', { withTimezone: true }).notNull().defaultNow(),
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export const manualClassifications = pgTable('manual_classifications', {
|
|
|
|
|
id: uuid('id').primaryKey().defaultRandom(),
|
|
|
|
|
diseaseSlug: varchar('disease_slug', { length: 80 })
|
|
|
|
|
.notNull()
|
|
|
|
|
.references(() => diseaseCatalog.slug),
|
|
|
|
|
observation: text('observation').notNull(),
|
|
|
|
|
location: varchar('location', { length: 160 }).notNull(),
|
|
|
|
|
createdAt: timestamp('created_at', { withTimezone: true }).notNull().defaultNow(),
|
|
|
|
|
});
|