You are here

function message_update_7006 in Message 7

Add "data" column to message-type.

File

./message.install, line 406
Install, update, and uninstall functions for the message module.

Code

function message_update_7006() {
  $column = array(
    'description' => 'Serialized array with general data.',
    'type' => 'text',
    'serialize' => TRUE,
    'size' => 'big',
  );
  db_add_field('message_type', 'data', $column);
}