You are here

function radioactivity_update_7201 in Radioactivity 7.2

Add a field for language in radioactivity_deferred_storage

File

./radioactivity.install, line 229

Code

function radioactivity_update_7201() {
  db_add_field('radioactivity_deferred_storage', 'language', array(
    'type' => 'varchar',
    'length' => 10,
    'not null' => TRUE,
    'default' => LANGUAGE_NONE,
    'description' => 'Langauge of the field and',
  ));
}