You are here

function video_update_6000 in Video 6.3

Update 6001 adding new filed to keep transcoder type zencoder

Return value

<type>

File

./video.install, line 86
Provide installation functions for video.module .

Code

function video_update_6000() {
  $ret = array();
  $ret[] = update_sql("ALTER TABLE {video_rendering} ADD transcoder VARCHAR( 240 ) NOT NULL");
  return $ret;
}