function kernest_schema in @font-your-face 6
Implements hook_schema.
File
- modules/
kernest/ kernest.install, line 30 - Adds KERNEST tables for caching API data.
Code
function kernest_schema() {
$schema = array();
$schema['kernest'] = array(
'description' => 'Stores KERNEST group information.',
'fields' => array(
'fid' => array(
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'Primary Key: Unique group ID.',
),
'name' => array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
'description' => 'The font name.',
),
'url' => array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
'description' => 'The font url.',
),
'css' => array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
'description' => 'Recommended CSS for the font.',
),
'foundry' => array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
'description' => 'The foundry name.',
),
'license' => array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
'description' => 'The license name.',
),
'license_url' => array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
'description' => 'The license URL.',
),
),
'primary key' => array(
'fid',
),
);
return $schema;
}