You are here

function access_update_7106 in Access Control Kit 7

Rename {access_scheme}.realm_type to {access_scheme}.type.

File

./access.install, line 349
Install, update and uninstall functions for the access control kit module.

Code

function access_update_7106() {
  db_change_field('access_scheme', 'realm_type', 'type', array(
    'description' => 'The scheme type.',
    'type' => 'varchar',
    'length' => 255,
    'not null' => TRUE,
    'default' => '',
  ));
}