You are here

function views_isotope_update_7100 in Brainstorm profile 7

Add urlFilters field to isotope_configurations table.

File

modules/custom/views_isotope/views_isotope.install, line 155
Installation functions.

Code

function views_isotope_update_7100() {
  $spec = [
    'type' => 'int',
    'size' => 'tiny',
    'description' => 'Should filters be represented in URL?',
  ];
  db_add_field('isotope_configurations', 'urlFilters', $spec);
}