From bc67db7db75cf5871a6ff756eaef0886f2fd4c83 Mon Sep 17 00:00:00 2001 From: Dennis Postma Date: Fri, 3 Jan 2025 16:08:19 +0100 Subject: [PATCH] Readme imporvement --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4657d72..91e7121 100644 --- a/README.md +++ b/README.md @@ -33,8 +33,12 @@ Run `npx mikro-orm migration:create --initial` to create a new initial migration ### Create migrations -Run `npx mikro-orm migration:create` to create a new migration. +Run `npx 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 migration:up` to apply all pending migrations. \ No newline at end of file +Run `npx mikro-orm migration:up` to apply all pending migrations. + +### Import default data + +After running the server, write `init` in the console to import default data. \ No newline at end of file