make drive_file.comment larger
we can change the 8192 to something else, but 512 is too short ☺
This commit is contained in:
parent
b8f2c67c10
commit
076b2d4e6c
5 changed files with 19 additions and 4 deletions
|
|
@ -67,7 +67,8 @@ export class MiDriveFile {
|
|||
public size: number;
|
||||
|
||||
@Column('varchar', {
|
||||
length: 512, nullable: true,
|
||||
length: 8192,
|
||||
nullable: true,
|
||||
comment: 'The comment of the DriveFile.',
|
||||
})
|
||||
public comment: string | null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue