vpx_beheer_update_26()vpx_beheer/vpx_beheer.install, line 344
<?php
function vpx_beheer_update_26() { // 11 aug 2008
$ret = array();
$ret[] = update_sql("INSERT INTO {madrest} ( `uri_id` , `uri` , `response_type` , `method` , `function_call` , `status` , `vpx_version` ) VALUES ( NULL , 'mediafile/upload', 'text/xml', 'PUT', 'vpx_upload_handle_file_put', 'active', '1.2.0');");
$ret[] = update_sql("INSERT INTO {madrest} ( `uri_id` , `uri` , `response_type` , `method` , `function_call` , `status` , `vpx_version` ) VALUES ( NULL , 'mediafile/\$mediafile_id/upload', 'text/xml', 'PUT', 'vpx_upload_handle_file_put_app', 'active', '1.2.0');");
$ret[] = update_sql("INSERT INTO {madrest} ( `uri_id` , `uri` , `response_type` , `method` , `function_call` , `status` , `vpx_version` ) VALUES ( NULL , 'internal/mediafile/\$mediafile_id/upload', 'text/xml', 'PUT', 'vpx_upload_handle_file_put_app', 'active', '1.2.0');");
db_set_active('data');
$ret[] = update_sql("ALTER TABLE {collection} ADD COLUMN `public_assign` enum('TRUE','FALSE') NOT NULL default 'FALSE'");
db_set_active();
return $ret;
}
?>