Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit da2e405

Browse files
committed
increase field length
1 parent b9cfc13 commit da2e405

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/main/java/com/intuit/developer/sampleapp/webhooks/domain/CompanyConfig.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package com.intuit.developer.sampleapp.webhooks.domain;
22

3+
import javax.persistence.Column;
34
import javax.persistence.Entity;
45
import javax.persistence.GeneratedValue;
56
import javax.persistence.GenerationType;
@@ -28,6 +29,7 @@ public class CompanyConfig {
2829

2930
private String lastCdcTimestamp; // timestamp when the last CDC call was made
3031

32+
@Column(length = 1000)
3133
private String oauth2BearerToken; //for OAuth2 apps set this, accesstoken and accessTokenSecret will not be available.
3234

3335
public CompanyConfig(String realmId, String accessToken, String accessTokenSecret, String webhooksSubscribedEntites, String oauth2BearerToken) {

0 commit comments

Comments
 (0)