summaryrefslogtreecommitdiff
path: root/modules/actions/actions.schema
blob: 748f0c78c3f57a620c7c09f7bac8ab4bc674ded2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
// $Id$

function actions_schema() {
  $schema['actions_assignments'] = array(
    'fields' => array(
      'hook' => array('type' => 'varchar', 'length' => 32, 'not null' => TRUE, 'default' => ''),
      'op' => array('type' => 'varchar', 'length' => 32, 'not null' => TRUE, 'default' => ''),
      'aid' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''),
      'weight' => array('type' => 'int', 'not null' => TRUE, 'default' => 0),
    ),
    'index keys' => array(
      'hook_op' => array('hook', 'op'))
  );
  return $schema;
}