function filebrowser_update_6212 in Filebrowser 7.3
Same name and namespace in other branches
- 6.2 filebrowser.install \filebrowser_update_6212()
- 7.4 filebrowser.install \filebrowser_update_6212()
- 7.2 filebrowser.install \filebrowser_update_6212()
File
- ./
filebrowser.install, line 373 - filbrowser installation file.
Code
function filebrowser_update_6212() {
$ret = array();
if (db_column_exists('node_dir_listing', 'path')) {
db_change_field($ret, 'node_dir_listing', 'path', 'folder_path', array(
'type' => 'varchar',
'length' => '255',
'not NULL' => TRUE,
));
}
return $ret;
}