-add missing column

This commit is contained in:
Martin Konecny 2012-05-10 17:23:59 -04:00
parent cfb4c201ff
commit 670c786924
1 changed files with 1 additions and 0 deletions
install_minimal/upgrades/airtime-2.1.0/data

View File

@ -35,6 +35,7 @@ CREATE TABLE cc_subjs_token (
ALTER TABLE cc_files
ADD COLUMN utime timestamp(6) without time zone,
ADD COLUMN lptime timestamp(6) without time zone,
ADD COLUMN soundcloud_upload_time timestamp(6) without time zone,
ADD COLUMN file_exists boolean DEFAULT true,
ALTER COLUMN bit_rate TYPE integer USING airtime_to_int(bit_rate) /* TYPE change - table: cc_files original: character varying(32) new: integer */,
ALTER COLUMN sample_rate TYPE integer USING airtime_to_int(bit_rate) /* TYPE change - table: cc_files original: character varying(32) new: integer */,