View source
<?php
function workflow_access_install() {
drupal_install_schema('workflow_access');
}
function workflow_access_uninstall() {
drupal_uninstall_schema('workflow_access');
}
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;
}