You are here

function mp3player_update_1 in MP3 Player 6.2

Same name and namespace in other branches
  1. 6 mp3player.install \mp3player_update_1()

File

./mp3player.install, line 235
The install file for MP3 Player.

Code

function mp3player_update_1() {
  $ret = array();
  db_add_field($ret, 'mp3player_players', 'checkpolicy', array(
    'type' => 'varchar',
    'length' => 3,
    'not null' => TRUE,
    'default' => 'no',
  ));
  return $ret;
}