SAAS-596: Store file size and hash in database

Removed md5_hash column from cc_files since there is already a md5
column
This commit is contained in:
drigato 2015-02-19 10:34:35 -05:00
parent 5bd3371ec2
commit e5d6797ce7
6 changed files with 16 additions and 119 deletions

View file

@ -110,7 +110,6 @@ class CcFilesTableMap extends TableMap
$this->addColumn('is_scheduled', 'DbIsScheduled', 'BOOLEAN', false, null, false);
$this->addColumn('is_playlist', 'DbIsPlaylist', 'BOOLEAN', false, null, false);
$this->addColumn('filesize', 'DbFilesize', 'INTEGER', true, null, 0);
$this->addColumn('md5_hash', 'DbMd5Hash', 'VARCHAR', true, 512, '');
// validators
} // initialize()