You are here

function filebrowser_update_6214 in Filebrowser 7.3

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

File

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

Code

function filebrowser_update_6214() {
  $ret = array();
  db_add_field($ret, 'node_dir_listing_content', 'root', array(
    'type' => 'varchar',
    'length' => '255',
    'not NULL' => TRUE,
  ));
  update_sql("DELETE FROM {node_dir_listing_content}");
  return $ret;
}