From 2ce9bbdedd63dc78f6363847f610d0cc3a9ea4f0 Mon Sep 17 00:00:00 2001 From: Dennis Postma Date: Fri, 14 Feb 2025 23:11:34 +0100 Subject: [PATCH] Updated commands --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d7d1afe..2ada333 100644 --- a/README.md +++ b/README.md @@ -39,15 +39,15 @@ MikroORM is used as the ORM for the server. ### Create init. migrations -Run `npx mikro-orm-esm migration:create --initial` to create a new initial migration. +Run `npm run mikro-orm migration:create --initial` to create a new initial migration. ### Create migrations -Run `npx mikro-orm-esm migration:create` to create a new migration. You do this when you want to add a new table or change an existing one. +Run `npm run mikro-orm migration:create` to create a new migration. You do this when you want to add a new table or change an existing one. ### Apply migrations -Run `npx mikro-orm-esm migration:up` to apply all pending migrations. +Run `npm run mikro-orm migration:up` to apply all pending migrations. ### Import default data