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

@ -95,7 +95,6 @@ CREATE TABLE "cc_files"
"is_scheduled" BOOLEAN DEFAULT 'f',
"is_playlist" BOOLEAN DEFAULT 'f',
"filesize" INTEGER DEFAULT 0 NOT NULL,
"md5_hash" VARCHAR(512) DEFAULT '' NOT NULL,
PRIMARY KEY ("id")
);