You are here

function breakpoints_update_7101 in Breakpoints 7

Add the 'overridden' column to the breakpoint_group table.

File

./breakpoints.install, line 165
Breakpoints

Code

function breakpoints_update_7101(&$sandbox) {
  db_add_field('breakpoint_group', 'overridden', array(
    'type' => 'int',
    'description' => 'Boolean indicating if this group is overriden',
    'not null' => TRUE,
    'default' => 0,
  ));
}