isbn.install in ISBN Field 7
Same filename and directory in other branches
Defines schema for ISBN fields
File
isbn.installView source
<?php
/**
* @file
* Defines schema for ISBN fields
*/
/**
* Implements hook_field_schema().
*/
function isbn_field_schema($field) {
return array(
'columns' => array(
'isbn' => array(
'type' => 'varchar',
'length' => 255,
'not null' => FALSE,
),
),
);
}
Functions
Name | Description |
---|---|
isbn_field_schema | Implements hook_field_schema(). |