feat: migrate full Prisma schema to Drizzle ORM (29 tables, 28 enums, 25 relations)
- Install drizzle-orm, drizzle-kit, pg, @types/pg in web/ - Create split schema directory with domain files: - auth (users, accounts, sessions, deviceTokens) - subscription (familyGroups, familyGroupMembers, subscriptions) - darkwatch (watchlistItems, exposures) - alerts - voiceprint (voiceEnrollments, voiceAnalyses, analysisJobs, analysisResults) - spamshield (spamFeedback, spamRules) - audit (auditLogs, kpiSnapshots) - correlation (normalizedAlerts, correlationGroups) - reports (securityReports) - marketing (waitlistEntries, blogPosts) - hometitle (propertyWatchlistItems, propertySnapshots, propertyChanges) - removebrokers (infoBrokers, removalRequests, brokerListings) - Define all 28 PostgreSQL enums via pgEnum() - Define all indexes, unique constraints, and foreign keys - Define all 25 relation definitions via relations() helper - Update drizzle.config.ts for PostgreSQL dialect - Update db/index.ts for node-postgres connection - Replace old placeholder schema.ts with barrel re-export - Add 38 comprehensive schema tests
This commit is contained in:
14
web/src/server/db/schema/index.ts
Normal file
14
web/src/server/db/schema/index.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
export * from "./enums";
|
||||
export * from "./auth";
|
||||
export * from "./subscription";
|
||||
export * from "./darkwatch";
|
||||
export * from "./alerts";
|
||||
export * from "./voiceprint";
|
||||
export * from "./spamshield";
|
||||
export * from "./audit";
|
||||
export * from "./correlation";
|
||||
export * from "./reports";
|
||||
export * from "./marketing";
|
||||
export * from "./hometitle";
|
||||
export * from "./removebrokers";
|
||||
export * from "./relations";
|
||||
Reference in New Issue
Block a user