function role_export_install in Role Export 7
Same name and namespace in other branches
- 6 role_export.install \role_export_install()
Implements hook_install().
File
- ./role_export.install, line 25 
- Install, Uninstall, Schema and Update functions for role_export
Code
function role_export_install() {
  db_add_field('role', 'machine_name', array(
    'description' => 'The machine name assigned by the user during creation of the role.',
    'type' => 'varchar',
    'length' => 255,
    'not null' => TRUE,
    'default' => '',
  ));
}