Skip to content

Commit

Permalink
fix: Removing uuid from id
Browse files Browse the repository at this point in the history
  • Loading branch information
simonas-notcat committed Mar 23, 2020
1 parent c32452c commit df12094
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions packages/daf-core/src/entities/message.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ import {
BaseEntity,
ManyToOne,
ManyToMany,
PrimaryGeneratedColumn,
OneToMany,
PrimaryColumn,
JoinTable,
CreateDateColumn,
UpdateDateColumn,
Expand All @@ -31,7 +30,7 @@ export class Message extends BaseEntity {
}
}

@PrimaryGeneratedColumn('uuid')
@PrimaryColumn()
id: string

@CreateDateColumn()
Expand Down

0 comments on commit df12094

Please sign in to comment.