You are here

function privatemsg_update_7202 in Privatemsg 7.2

Add field to track what message this is a reply to (if any).

File

./privatemsg.install, line 418
Install file for privatemsg.module

Code

function privatemsg_update_7202() {
  db_add_field('pm_message', 'reply_to_mid', array(
    'description' => 'mid of the message this is a reply to (if any)',
    'type' => 'int',
    'default' => 0,
    'not null' => TRUE,
    'unsigned' => TRUE,
  ));
}