8 lines
355 B
TypeScript
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.
|
|
}
|