Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 523 Bytes

scripts.md

File metadata and controls

16 lines (12 loc) · 523 Bytes

-- create migration pnpm run migration:gen libs/metadata-db/migrations/YOUR_MIGRATION_NAME -d ./orm.config.ts

-- migrate up pnpm run migration:up -d ./orm.config.ts

-- migrate down pnpm run migration:down -d ./orm.config.ts

-- bcrypt compatibility issue with node22 -- issue: kelektiv/node.bcrypt.js#1192 -- solve with: kelektiv/node.bcrypt.js#800 -- try this if you facing bcrypt module not found issue cd node_modules/bcrypt node-pre-gyp install --fallback-to-build