Skip to content
This repository has been archived by the owner on May 19, 2023. It is now read-only.

Commit

Permalink
fix: include tokenID as part of PK for Transfers
Browse files Browse the repository at this point in the history
  • Loading branch information
julianmrodri authored and AuHau committed Jun 26, 2020
1 parent 422a3da commit 9dbba38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/rns/models/transfer.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default class Transfer extends Model {
@Column({ primaryKey: true, type: DataType.STRING })
id!: string

@Column(DataType.STRING)
@Column({ primaryKey: true, type: DataType.STRING })
tokenId!: string

@Column(DataType.STRING)
Expand Down

0 comments on commit 9dbba38

Please sign in to comment.