Skip to content

Commit

Permalink
fix(api): Fixed issue with link caused by update change.
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotcourant committed Nov 26, 2022
1 parent 4db5734 commit 0308f5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/models/link.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ type Link struct {
PlaidLinkId *uint64 `json:"-" pg:"plaid_link_id,on_delete:SET NULL"`
PlaidLink *PlaidLink `json:"-" pg:"rel:has-one"`
PlaidInstitutionId *string `json:"plaidInstitutionId" pg:"plaid_institution_id"`
PlaidNewAccountsAvailable bool `json:"plaidNewAccountsAvailable" pg:"plaid_new_accounts_available"`
PlaidNewAccountsAvailable bool `json:"plaidNewAccountsAvailable" pg:"plaid_new_accounts_available,use_zero"`
LinkStatus LinkStatus `json:"linkStatus" pg:"link_status,notnull,default:0"`
ErrorCode *string `json:"errorCode,omitempty" pg:"error_code"`
ExpirationDate *time.Time `json:"expirationDate" pg:"expiration_date"`
Expand Down

0 comments on commit 0308f5e

Please sign in to comment.