Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added unique index on donation transaction id #128

Merged
merged 1 commit into from
Nov 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions migration/1730476526611-addDonationTransactionUniqIdx.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import { MigrationInterface, QueryRunner } from 'typeorm';

export class AddDonationTransactionUniqIdx1730476526611
implements MigrationInterface
{
name = 'AddDonationTransactionUniqIdx1730476526611';

public async up(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(
`CREATE UNIQUE INDEX "unique_transaction_id" ON "donation" ("transactionId") `,
);
}

public async down(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(`DROP INDEX "public"."unique_transaction_id"`);
}
}
1 change: 1 addition & 0 deletions src/entities/donation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ export class Donation extends BaseEntity {
@Field({ nullable: true })
@Column({ nullable: true })
// It's transactionHash for crypto donation, and trackingCode for fiat donation
@Index('unique_transaction_id', { unique: true })
transactionId: string;

@Field({ nullable: true })
Expand Down
Loading