glprog / dev-journey-typeorm

A repository to keep and share knowledge about TypeORM

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Create a migration

  • typeorm migration:create -n {migrationName}

Run migrations

  • typeorm migration:run

Column with uuid in PostgreSQL

{
  "isPrimary": true,
  "name": "id",
  "type": "uuid",
  "generationStrategy": "uuid",
  "default": "uuid_generate_v4()",
}

Before use uuid_generate_v4() you should execute this command bellow

await queryRunner.query(`CREATE EXTENSION IF NOT EXISTS "uuid-ossp"`);

About

A repository to keep and share knowledge about TypeORM