Skip to content

Instantly share code, notes, and snippets.

@jampajeen
Last active June 3, 2020 13:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jampajeen/bcaf6d292f9045a6d9fe03735ac238ab to your computer and use it in GitHub Desktop.
Save jampajeen/bcaf6d292f9045a6d9fe03735ac238ab to your computer and use it in GitHub Desktop.
Nestjs TypeORM auto generate UUID as a primary key
@Entity()
export class User {
@PrimaryGeneratedColumn("uuid")
id: string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment