Skip to content

Commit

Permalink
RSDEV-271: Increase columns size for UserConnection fields
Browse files Browse the repository at this point in the history
  • Loading branch information
rs-nicof committed Aug 22, 2024
1 parent 62466a7 commit 1f4a494
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<modelVersion>4.0.0</modelVersion>
<artifactId>rspace-core-model</artifactId>
<version>2.1.3</version>
<version>2.1.4</version>
<parent>
<artifactId>rspace-parent</artifactId>
<groupId>com.github.rspace-os</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ public UserConnection(UserConnectionId id, String accessToken) {
@Column(length = 512)
private String imageUrl;

@Column(length = 512, nullable = false)
@Column(length = 2048, nullable = false)
private String accessToken;

@Column(length = 512)
@Column(length = 2048)
private String secret;

@Column(length = 512)
@Column(length = 2048)
private String refreshToken;

/**
Expand Down

0 comments on commit 1f4a494

Please sign in to comment.