mikro-orm-entity
Installation
SKILL.md
MikroORM Entity Guide
Use this skill when creating or modifying MikroORM entity files (*.entity.ts).
Basic Entity Structure
import { Entity, PrimaryKey, Property, Unique } from '@mikro-orm/core';
import { uuidv7 } from 'uuidv7';
import { EntityEnum } from '../entity.enums';
@Entity()
export class EntityName {
@PrimaryKey({ type: 'uuid' })
id: string = uuidv7();
Related skills
More from bloominggrace/create-fullstack-service
dto-response
Use when creating or modifying DTO files in the `dto/` folder.
6pr-title
Use when writing Pull Request titles or commit messages to follow the Korean action word convention.
5testing-vitest
Use when writing tests for NestJS + MikroORM with transaction rollback and real DB integration.
4nest-mikro-orm-service
Use when creating or modifying NestJS service files that interact with MikroORM.
1