@Entity()
@Tree('closure-table')
class Comment {
@PrimaryGeneratedColumn('uuid')
id: string;
@TreeParent()
parent: Comment;
@TreeChildren({ cascade: true })
children: Comment[];
}
Is there any way to generate a TypeORM migration file for the above entity? I couldnt find it in the documentation.