You are here

function filebrowser_update_6201 in Filebrowser 7.3

Same name and namespace in other branches
  1. 6.2 filebrowser.install \filebrowser_update_6201()
  2. 7.4 filebrowser.install \filebrowser_update_6201()
  3. 7.2 filebrowser.install \filebrowser_update_6201()

File

./filebrowser.install, line 226
filbrowser installation file.

Code

function filebrowser_update_6201() {
  $ret = array();
  db_add_field($ret, 'filebrowser', 'private_downloads', array(
    'type' => 'int',
    'size' => 'tiny',
    'unsigned' => TRUE,
    'not NULL' => TRUE,
    'default' => 0,
  ));
  return $ret;
}