You are here

function message_update_7001 in Message 7

Add the argument keys column of a message type.

File

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

Code

function message_update_7001() {
  db_add_field('message_type', 'argument_keys', array(
    'description' => 'Serialized array with the argument keys',
    'type' => 'text',
    'serialize' => TRUE,
  ));
}