You are here

function draggableviews_update_6300 in DraggableViews 6.3

Same name and namespace in other branches
  1. 7 draggableviews.install \draggableviews_update_6300()

Add a schema for structure information

File

./draggableviews.install, line 107
Draggableviews defines a new database schema for saving the collapsed/expand state of views.

Code

function draggableviews_update_6300() {
  $ret = array();
  $schemas = draggableviews_schema();
  db_create_table($ret, 'draggableviews_structure', $schemas['draggableviews_structure']);
  return $ret;
}