You are here

function node_field_update_7000 in Node Field 7.2

Change definition of value field.

File

./node_field.install, line 166
Install/update/uninstall scripts for node_field module.

Code

function node_field_update_7000() {
  $field = [
    'type' => 'text',
    'size' => 'big',
    'not null' => FALSE,
  ];
  db_change_field('node_field', 'value', 'value', $field);
}