function smileys_schema in Smileys 6
Implementation of hook_schema().
File
- ./
smileys.install, line 6
Code
function smileys_schema() {
$schema['smileys'] = array(
'fields' => array(
'id' => array(
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
),
'acronyms' => array(
'type' => 'varchar',
'not null' => TRUE,
'default' => '',
'length' => 255,
),
'image' => array(
'type' => 'varchar',
'not null' => TRUE,
'default' => '',
'length' => 255,
),
'description' => array(
'type' => 'varchar',
'not null' => TRUE,
'default' => '',
'length' => 64,
),
'weight' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'standalone' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
'size' => 'tiny',
),
'promote_to_box' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 1,
'size' => 'tiny',
),
'package' => array(
'type' => 'varchar',
'not null' => TRUE,
'default' => 'Miscellaneous',
'length' => 64,
),
),
'primary key' => array(
'id',
),
);
return $schema;
}