You are here

function drupalchat_update_8001 in DrupalChat 8

File

./drupalchat.install, line 146
Installation file for the DrupalChat module.

Code

function drupalchat_update_8001() {
  if (!db_field_exists('drupalchat_msg', 'message_id')) {
    db_add_field('drupalchat_msg', 'message_id', array(
      'type' => 'varchar',
      'length' => 50,
      'not null' => TRUE,
      'description' => 'ID of chat message.',
    ));
  }
}