You are here

function views_update_6003 in Views (for Drupal 7) 6.2

Same name and namespace in other branches
  1. 6.3 views.install \views_update_6003()
  2. 7.3 views.install \views_update_6003()

File

./views.install, line 302
views.install Contains install and update functions for Views.

Code

function views_update_6003() {
  $ret = array();
  db_add_unique_key($ret, 'views_view', 'name', array(
    'name',
  ));
  return $ret;
}