You are here

function custom_formatters_update_7200 in Custom Formatters 7.2

Add FAPI column to Formatters table.

File

./custom_formatters.install, line 79
Install, update and uninstall functions for the Custom Formatters module.

Code

function custom_formatters_update_7200() {
  db_add_field('formatters', 'fapi', array(
    'type' => 'blob',
  ));
  return t('New FAPI column added to Formatters table.');
}