Files
support_backend/prisma/seed/hierarchy.seed.ts
T
2026-08-19 16:29:17 +05:30

8 lines
355 B
TypeScript

import { PrismaClient } from '@prisma/client';
export async function seedHierarchy(_prisma: PrismaClient): Promise<void> {
// eslint-disable-next-line no-console
console.log(' -> Hierarchy seed skipped (schema reserved for orchestration domain phase).');
// Stub function - inactive until hierarchy schema models are introduced in domain phase.
}