function node_field_schema in Node Field 7.2
Implements hook_schema().
File
- ./
node_field.install, line 11 - Install/update/uninstall scripts for node_field module.
Code
function node_field_schema() {
$schema = [];
$schema['node_field'] = [
'fields' => [
'id' => [
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
],
'nid' => [
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
],
'type' => [
'type' => 'varchar',
'length' => 64,
'not null' => TRUE,
'default' => 'text',
],
'title' => [
'type' => 'varchar',
'length' => 256,
'not null' => TRUE,
'default' => 'unassigned',
],
'machine_name' => [
'type' => 'varchar',
'length' => 256,
'not null' => TRUE,
'default' => '',
],
'show_title' => [
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'size' => 'tiny',
'default' => 0,
],
'hidden' => [
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'size' => 'tiny',
'default' => 0,
],
'value' => [
'type' => 'text',
'size' => 'big',
'not null' => FALSE,
],
'weight' => [
'type' => 'int',
'unsigned' => FALSE,
'not null' => TRUE,
'size' => 'small',
'default' => 0,
],
'settings' => [
'type' => 'text',
'size' => 'big',
'not null' => FALSE,
'serialize' => TRUE,
],
],
'primary key' => [
'id',
],
'indexes' => [
'target' => [
'nid',
],
],
];
return $schema;
}