You are here

function node_limit_role_schema in Node Limit 7

Same name and namespace in other branches
  1. 8 old/node_limit_role/node_limit_role.install \node_limit_role_schema()
  2. 6 node_limit_role/node_limit_role.install \node_limit_role_schema()

Implements hook_schema().

File

node_limit_role/node_limit_role.install, line 11
Installation functions for module node_limit_role.

Code

function node_limit_role_schema() {
  $schema['node_limit_role'] = array(
    'description' => 'The table for applying node limits to a role',
    'fields' => array(
      'lid' => array(
        'description' => 'The {node_limit}.lid',
        'type' => 'int',
        'not null' => TRUE,
      ),
      'rid' => array(
        'description' => 'The {role}.rid to which this limit applies',
        'type' => 'int',
        'not null' => TRUE,
        'unsigned' => TRUE,
      ),
    ),
    //the limit-user combination is unique

    /**
     * this means that in the future, we may allow a limit to be applied to more
     * than one user.  right now, though, its one-user-per-limit
     */
    'primary key' => array(
      'lid',
      'rid',
    ),
  );
  return $schema;
}