fix: correct cc_file.artwork column size
This commit is contained in:
parent
6889e11a91
commit
980f1acd0c
5 changed files with 27 additions and 4 deletions
|
@ -106,7 +106,7 @@ class CcFilesTableMap extends TableMap
|
|||
$this->addColumn('is_playlist', 'DbIsPlaylist', 'BOOLEAN', false, null, false);
|
||||
$this->addColumn('filesize', 'DbFilesize', 'INTEGER', true, null, 0);
|
||||
$this->addColumn('description', 'DbDescription', 'VARCHAR', false, 512, null);
|
||||
$this->addColumn('artwork', 'DbArtwork', 'VARCHAR', false, 512, null);
|
||||
$this->addColumn('artwork', 'DbArtwork', 'VARCHAR', false, 4096, null);
|
||||
$this->addColumn('track_type', 'DbTrackType', 'VARCHAR', false, 16, null);
|
||||
// validators
|
||||
} // initialize()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue