You are here

function views_isotope_update_7101 in Brainstorm profile 7

Add isOriginLeft field to isotope_configurations table.

File

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

Code

function views_isotope_update_7101() {
  $spec = [
    'type' => 'int',
    'size' => 'tiny',
    'description' => 'isOriginLeft',
  ];
  db_add_field('isotope_configurations', 'isOriginLeft', $spec);
}