Last active
June 3, 2020 13:55
-
-
Save jampajeen/bcaf6d292f9045a6d9fe03735ac238ab to your computer and use it in GitHub Desktop.
Nestjs TypeORM auto generate UUID as a primary key
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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