diff --git a/src/entities/project.ts b/src/entities/project.ts index eb685dc7b..b146fa228 100644 --- a/src/entities/project.ts +++ b/src/entities/project.ts @@ -468,6 +468,10 @@ export class Project extends BaseEntity { @Column('integer', { array: true, default: [] }) batchNumbersWithSafeTransactions?: number[]; + @Field(_type => Int, { nullable: true }) + @Column({ type: 'int', nullable: true }) + matchingFunds?: number; + // only projects with status active can be listed automatically static pendingReviewSince(maximumDaysForListing: number) { const maxDaysForListing = moment()