function views_isotope_update_7100 in Views Isotope (Deprecated) 7.2
Add urlFilters field to isotope_configurations table.
File
- ./
views_isotope.install, line 154 - Installation functions.
Code
function views_isotope_update_7100() {
$spec = array(
'type' => 'int',
'size' => 'tiny',
'description' => 'Should filters be represented in URL?',
);
db_add_field('isotope_configurations', 'urlFilters', $spec);
}