function views_update_6005

File

./views.install, line 362

Code

function views_update_6005() {
    $new_field = array(
        'type' => 'varchar',
        'length' => '64',
        'default' => '',
        'not null' => TRUE,
        'description' => 'What table this view is based on, such as node, user, comment, or term.',
    );
    db_change_field('views_view', 'base_table', 'base_table', $new_field);
}