You are here

function record_shorten_schema in Shorten URLs 8.2

Same name and namespace in other branches
  1. 8 modules/record_shorten/record_shorten.install \record_shorten_schema()
  2. 6 record_shorten.install \record_shorten_schema()
  3. 7.2 record_shorten.install \record_shorten_schema()
  4. 7 record_shorten.install \record_shorten_schema()

Implements hook_schema().

File

modules/record_shorten/record_shorten.install, line 11
Records shortened URLs.

Code

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;
}