You are here

function views_isotope_update_7101 in Views Isotope (Deprecated) 7.2

Add isOriginLeft field to isotope_configurations table.

File

./views_isotope.install, line 166
Installation functions.

Code

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