You are here

function uc_cart_links_schema in Ubercart 6.2

Same name and namespace in other branches
  1. 8.4 uc_cart_links/uc_cart_links.install \uc_cart_links_schema()
  2. 7.3 uc_cart_links/uc_cart_links.install \uc_cart_links_schema()

Implements hook_schema().

File

uc_cart_links/uc_cart_links.install, line 11
uc_cart_links module install file.

Code

function uc_cart_links_schema() {
  $schema['uc_cart_link_clicks'] = array(
    'description' => 'Stores information for cart links.',
    'fields' => array(
      'cart_link_id' => array(
        'description' => 'The cart link identifier.',
        'type' => 'varchar',
        'length' => 32,
        'not null' => TRUE,
        'default' => '0',
      ),
      'clicks' => array(
        'description' => 'The number of times this cart link was clicked.',
        'type' => 'int',
        'not null' => TRUE,
        'default' => 0,
      ),
      'last_click' => array(
        'description' => 'The time of the last click on this cart link, stored as a UNIX timestamp.',
        'type' => 'int',
        'not null' => TRUE,
        'default' => 0,
      ),
    ),
    'primary key' => array(
      'cart_link_id',
    ),
  );
  return $schema;
}