Dmitry Zotov
Dmitry Zotov
@felix-gohla I am trying to re-trigger CircleCI Pipeline by pushing a small change, but getting `remote: Permission to giz-berlin/typeorm-1.git denied to AlexMesser`. Can you please review permissions and allow me...
Having the same issue when trying to deploy [full-stack-asset-transfer-guide](https://github.com/hyperledger/fabric-samples/tree/main/full-stack-asset-transfer-guide) sample on AWS EKS: ```shell Post "https://test-network-org0-ca-ca.44-216-165-118.nip.io:443/enroll": tls: failed to verify certificate: x509: certificate is valid for ingress.local, not test-network-org0-ca-ca.44-216-165-118.nip.io ```
any workaround?
You should put a `name` into `@PrimaryGeneratedColumn()` and remove the `@Column()` decorator. Here how it should look: ```ts @Field(() => String) @PrimaryGeneratedColumn({ name: 'account_number' }) accountNumber!: string; ```