Skip to content
Snippets Groups Projects
Verified Commit fcceb070 authored by Drew Webber's avatar Drew Webber
Browse files

Issue #691932: adding the test files this time; oops

parent 541bbe99
No related branches found
No related tags found
No related merge requests found
name = "Field API Schema Alter Test"
description = "Support module for the Field API schema alter tests."
core = 7.x
package = Testing
version = VERSION
hidden = TRUE
<?php
/**
* @file
* Install, update and uninstall functions for the field_test_schema_alter module.
*/
/**
* Implements hook_field_schema_alter().
*/
function field_test_schema_alter_field_schema_alter(&$schema, $field) {
if ($field['type'] == 'test_field') {
// Alter the field type.
$schema['columns']['value']['type'] = 'float';
// Add an additional column of data.
$schema['columns']['additional_column'] = array(
'description' => "Additional column added to image field table.",
'type' => 'varchar',
'length' => 128,
'not null' => FALSE,
);
}
}
<?php
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment