function better_formats_schema in Better Formats 6.2
Same name and namespace in other branches
- 6 better_formats.install \better_formats_schema()
Implementation of hook_schema().
File
- ./
better_formats.install, line 15 - Installs the better_formats module.
Code
function better_formats_schema() {
$schema['better_formats_defaults'] = array(
'fields' => array(
'rid' => array(
'type' => 'int',
'size' => 'normal',
'unsigned' => TRUE,
'not null' => TRUE,
),
'type' => array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
),
'format' => array(
'type' => 'int',
'size' => 'medium',
'unsigned' => TRUE,
'not null' => TRUE,
),
'type_weight' => array(
'type' => 'int',
'size' => 'tiny',
'default' => 0,
'unsigned' => TRUE,
'not null' => TRUE,
),
'weight' => array(
'type' => 'int',
'size' => 'tiny',
'default' => 0,
'unsigned' => FALSE,
'not null' => TRUE,
),
),
'primary key' => array(
'rid',
'type',
),
);
return $schema;
}