This commit is contained in:
2026-06-26 12:40:16 +03:30
parent 6d16a7dde5
commit 1f74019eaf
5 changed files with 38 additions and 30 deletions
+1 -1
View File
@@ -10,7 +10,7 @@
"db:update": "npx mikro-orm schema:update --run --config ./src/config/mikro-orm.config.dev.ts ",
"db:drop": "npx mikro-orm schema:drop --run --config ./src/config/mikro-orm.config.dev.ts",
"db:refresh": "npm run db:drop && npm run db:create ",
"db:reset": "npm run db:drop && npm run db:create && npm run db:seed",
"db:reset": "npm run db:drop && npm run db:create && npm run migration:up && npm run db:seed",
"db:seed": "npx mikro-orm seeder:run --config ./src/config/mikro-orm.config.dev.ts",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",