Fix deployer type

This commit is contained in:
IshaVenikar 2024-10-29 12:44:30 +05:30
parent b3f5d35cac
commit 6e1464d4da
2 changed files with 2 additions and 1 deletions

View File

@ -19,7 +19,7 @@ export class Deployer {
minimumPayment!: string | null;
@Column('varchar', { nullable: true })
paymentAddress!: string | null;
paymentAddress!: string | null;
@ManyToMany(() => Project, (project) => project.deployers)
projects!: Project[];

View File

@ -140,6 +140,7 @@ type Deployer {
deployerId: String!
deployerApiUrl: String!
minimumPayment: String
paymentAddress: String
createdAt: String!
updatedAt: String!
}