function views_update_6008

Same name in other branches
  1. 7.x-3.x views.install \views_update_6008()

Add the primary key to the views_display table.

File

./views.install, line 407

Code

function views_update_6008() {
    $ret = array();
    db_add_primary_key($ret, 'views_display', array(
        'vid',
        'id',
    ));
    return $ret;
}