Merge pull request #546 from TeamPiped/channel-length

Update max channel length
This commit is contained in:
Kavin 2023-03-06 01:17:28 +00:00 committed by GitHub
commit 4105ee0cc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ public class Channel {
@Column(name = "uploader_id", unique = true, nullable = false, length = 30)
private String uploader_id;
@Column(name = "uploader", length = 80)
@Column(name = "uploader", length = 100)
private String uploader;
@Column(name = "uploader_avatar", length = 150)