You are here

function ad_channel_update_6006 in Advertisement 6.2

Same name and namespace in other branches
  1. 6.3 channel/ad_channel.install \ad_channel_update_6006()
  2. 7 channel/ad_channel.install \ad_channel_update_6006()

File

channel/ad_channel.install, line 254

Code

function ad_channel_update_6006() {
  $ret = array();
  db_change_field($ret, 'ad_channel', 'weight', 'weight', array(
    'type' => 'int',
    'size' => 'medium',
    'not null' => TRUE,
    'unsigned' => FALSE,
    'default' => 0,
    'description' => 'Used when displaying channels to admins, heavier weights sink to the bottom.',
  ));
  db_change_field($ret, 'ad_channel_container', 'weight', 'weight', array(
    'type' => 'int',
    'size' => 'medium',
    'not null' => TRUE,
    'unsigned' => FALSE,
    'default' => 0,
    'description' => 'Used when displaying channels to admins, heavier weights sink to the bottom.',
  ));
  return $ret;
}