You are here

function guestbook_update_7201 in Guestbook 7.2

Add {guestbook}.status column.

File

./guestbook.install, line 95

Code

function guestbook_update_7201() {
  if (!db_field_exists('guestbook', 'status')) {
    db_add_field('guestbook', 'status', array(
      'type' => 'int',
      'size' => 'tiny',
      'unsigned' => TRUE,
      'not null' => TRUE,
      'default' => 1,
    ));
  }
}