You are here

function block_aria_landmark_roles_update_6101 in Block ARIA Landmark Roles 6

Removed the primary key from the block_aria_landmark_roles table.

File

./block_aria_landmark_roles.install, line 75
Install, update, and uninstall functions for the Blocks ARIA Landmark Roles module.

Code

function block_aria_landmark_roles_update_6101() {
  $ret = array();
  $spec = array(
    'description' => 'The assigned ARIA landmark role',
    'type' => 'varchar',
    'length' => '255',
    'not null' => TRUE,
    'default' => '',
  );
  db_change_field($ret, 'block_aria_landmark_roles', 'aria_role', 'role', $spec);
  return $ret;
}