You are here

function ajaxblocks_update_6100 in Ajax Blocks 6

Add loader_picture field.

File

./ajaxblocks.install, line 92
Install, update and uninstall functions for the ajaxblocks module.

Code

function ajaxblocks_update_6100() {
  $ret = array();
  db_add_field($ret, 'ajaxblock', 'loader_picture', array(
    'type' => 'int',
    'not null' => TRUE,
    'default' => 0,
  ));
  return $ret;
}