mirror of
https://github.com/TeamPiped/Piped-Backend.git
synced 2024-08-14 23:51:41 +00:00
Merge pull request #409 from TeamPiped/dt-length
Change max length to 200 characters.
This commit is contained in:
commit
6e4cbc1ee3
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ public class Playlist {
|
|||
@GeneratedValue(generator = "UUID", strategy = GenerationType.IDENTITY)
|
||||
private UUID playlist_id;
|
||||
|
||||
@Column(name = "name", length = 100)
|
||||
@Column(name = "name", length = 200)
|
||||
private String name;
|
||||
|
||||
@Column(name = "short_description", length = 100)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue