You are here

workflow_access.install in Workflow 6.2

File

workflow_access/workflow_access.install
View source
<?php

/**
 * Implementation of hook_install().
 */
function workflow_access_install() {
  drupal_install_schema('workflow_access');
}

/**
 * Implementation of hook_uninstall().
 */
function workflow_access_uninstall() {
  drupal_uninstall_schema('workflow_access');
}

/**
 * Implementation of hook_schema().
 */
function workflow_access_schema() {
  $schema['workflow_access'] = array(
    'fields' => array(
      'sid' => array(
        'type' => 'serial',
        'not null' => TRUE,
      ),
      'rid' => array(
        'type' => 'int',
        'not null' => TRUE,
        'default' => 0,
      ),
      'grant_view' => array(
        'type' => 'int',
        'unsigned' => TRUE,
        'size' => 'tiny',
        'not null' => TRUE,
        'default' => 0,
      ),
      'grant_update' => array(
        'type' => 'int',
        'unsigned' => TRUE,
        'size' => 'tiny',
        'not null' => TRUE,
        'default' => 0,
      ),
      'grant_delete' => array(
        'type' => 'int',
        'unsigned' => TRUE,
        'size' => 'tiny',
        'not null' => TRUE,
        'default' => 0,
      ),
    ),
    'indexes' => array(
      'rid' => array(
        'rid',
      ),
      'sid' => array(
        'sid',
      ),
    ),
  );
  return $schema;
}

Functions

Namesort descending Description
workflow_access_install Implementation of hook_install().
workflow_access_schema Implementation of hook_schema().
workflow_access_uninstall Implementation of hook_uninstall().