You are here

function delta_update_7302 in Delta 7.3

Add a description field to the Delta database table.

File

./delta.install, line 170
Contains install, update, and uninstall functions for Skinr.

Code

function delta_update_7302(&$sandbox) {
  db_add_field('delta', 'description', array(
    'description' => 'A brief description of this theme settings template.',
    'type' => 'text',
    'size' => 'medium',
    'not null' => TRUE,
    'initial' => '',
  ));
  return t("Successfully added a description field to the Delta database table.");
}