import { PrismaService } from '../prisma.service';
export interface DataMigration {
name: string;
run(prisma: PrismaService): void;
}