You are here

user_relationship_invites.install in User Relationships 7

Same filename and directory in other branches
  1. 6 user_relationship_invites/user_relationship_invites.install

Installation hooks for User Relationship Invites module.

File

user_relationship_invites/user_relationship_invites.install
View source
<?php

/**
 * @file
 * Installation hooks for User Relationship Invites module.
 */

/**
 * Implements hook_install().
 */
function user_relationship_invites_schema() {
  $schema['user_relationship_invites'] = array(
    'fields' => array(
      'inviter_uid' => array(
        'type' => 'int',
        'unsigned' => TRUE,
        'not null' => TRUE,
        'default' => 0,
      ),
      'rtid' => array(
        'type' => 'int',
        'unsigned' => TRUE,
        'not null' => TRUE,
        'default' => 0,
      ),
      'invite_code' => array(
        'type' => 'varchar',
        'length' => 64,
        'not null' => TRUE,
        'default' => '',
      ),
    ),
    'indexes' => array(
      'invite_code' => array(
        'invite_code',
      ),
    ),
  );
  return $schema;
}

Functions