You are here

record_shorten.install in Shorten URLs 8.2

Same filename and directory in other branches
  1. 8 modules/record_shorten/record_shorten.install

Records shortened URLs.

File

modules/record_shorten/record_shorten.install
View source
<?php

/**
 * @file
 * Records shortened URLs.
 */

/**
 * Implements hook_schema().
 */
function record_shorten_schema() {
  $schema = [];
  $schema['record_shorten'] = [
    'description' => 'Records shortened URLs.',
    'fields' => [
      'sid' => [
        'type' => 'serial',
        'not null' => TRUE,
        'unsigned' => TRUE,
        'description' => 'The ID of the shortened URL.',
      ],
      'original' => [
        'type' => 'varchar',
        'length' => 255,
        'not null' => TRUE,
        'default' => '',
        'description' => 'The original (long) URL.',
      ],
      'short' => [
        'type' => 'varchar',
        'length' => 255,
        'not null' => TRUE,
        'default' => '',
        'description' => 'The new (short) URL.',
      ],
      'service' => [
        'type' => 'varchar',
        'length' => 255,
        'not null' => TRUE,
        'default' => '',
        'description' => 'The service used to shorten the URL.',
      ],
      'uid' => [
        'type' => 'int',
        'unsigned' => TRUE,
        'not null' => TRUE,
        'default' => 0,
        'description' => 'The User ID of the user who created the shortened URL.',
      ],
      'hostname' => [
        'description' => 'The IP address of the user who created the shortened URL.',
        'type' => 'varchar',
        'length' => 128,
        'not null' => TRUE,
        'default' => '',
      ],
      'created' => [
        'type' => 'int',
        'not null' => TRUE,
        'default' => 0,
        'description' => 'The time the shortened URL was created.',
      ],
    ],
    'indexes' => [
      'sid' => [
        'sid',
      ],
    ],
    'primary key' => [
      'sid',
    ],
  ];
  return $schema;
}

Functions

Namesort descending Description
record_shorten_schema Implements hook_schema().