You are here

function fivestar_comment_update_6200 in Fivestar 6.2

Add tag column to the fivestar_comment table.

File

./fivestar_comment.install, line 57
Installation file for Fivestar Comment module.

Code

function fivestar_comment_update_6200() {
  $ret = array();
  db_add_field($ret, 'fivestar_comment', 'tag', array(
    'type' => 'varchar',
    'length' => 64,
    'not null' => TRUE,
    'default' => 'vote',
  ));
  return $ret;
}