- GET /api/projects returns the shared global list; POST /api/projects creates a project, deduped case-insensitively (F3). - Repository find-or-create trims and matches on lower(name); a unique index on lower(name) enforces the same rule at the DB (replacing the case- sensitive column unique constraint) — migration 0001. - ProjectAutocomplete: creatable autocomplete that lists projects, offers to create an unknown name inline, and selects it without reload. - Integration test (dedupe/list against Postgres) + component test.
38 lines
1.5 KiB
TypeScript
38 lines
1.5 KiB
TypeScript
// Drizzle (Postgres) schema (C8).
|
|
// `section_id` is a plain string referencing the in-code board section ids
|
|
// (C1) — no foreign key, because sections live in code, not the DB (ADR 0001).
|
|
import { pgTable, uuid, text, timestamp, uniqueIndex } from 'drizzle-orm/pg-core'
|
|
import { sql } from 'drizzle-orm'
|
|
import { randomUUID } from 'node:crypto'
|
|
|
|
export const projects = pgTable(
|
|
'projects',
|
|
{
|
|
id: uuid('id').primaryKey().$defaultFn(randomUUID),
|
|
name: text('name').notNull(),
|
|
createdAt: timestamp('created_at', { withTimezone: true }).notNull().defaultNow(),
|
|
},
|
|
// Case-insensitive uniqueness: "Acme" and "acme" are the same project (F3).
|
|
(t) => [uniqueIndex('projects_name_lower_idx').on(sql`lower(${t.name})`)],
|
|
)
|
|
|
|
export const defects = pgTable('defects', {
|
|
id: uuid('id').primaryKey().$defaultFn(randomUUID),
|
|
sectionId: text('section_id').notNull(),
|
|
projectId: uuid('project_id')
|
|
.notNull()
|
|
.references(() => projects.id),
|
|
verbatim: text('verbatim').notNull(),
|
|
reporterEmail: text('reporter_email').notNull(),
|
|
createdAt: timestamp('created_at', { withTimezone: true }).notNull().defaultNow(),
|
|
})
|
|
|
|
export const pushSubscriptions = pgTable('push_subscriptions', {
|
|
id: uuid('id').primaryKey().$defaultFn(randomUUID),
|
|
endpoint: text('endpoint').notNull().unique(),
|
|
p256dh: text('p256dh').notNull(),
|
|
auth: text('auth').notNull(),
|
|
reporterEmail: text('reporter_email'),
|
|
createdAt: timestamp('created_at', { withTimezone: true }).notNull().defaultNow(),
|
|
})
|