function filebrowser_update_6204 in Filebrowser 7.3
Same name and namespace in other branches
- 6.2 filebrowser.install \filebrowser_update_6204()
- 7.4 filebrowser.install \filebrowser_update_6204()
- 7.2 filebrowser.install \filebrowser_update_6204()
File
- ./
filebrowser.install, line 284 - filbrowser installation file.
Code
function filebrowser_update_6204() {
$ret = array();
// Add new fields
db_add_field($ret, 'filebrowser', 'hide_extension', array(
'type' => 'int',
'size' => 'tiny',
'not NULL' => TRUE,
'disp-width' => '1',
'default' => '0',
));
return $ret;
}