You are here

function simplenews_update_7204 in Simplenews 7.2

Remove the timestamp column on the {simplenews_subscriber}.

File

./simplenews.install, line 1090
Install, update and uninstall functions for the simplenews module

Code

function simplenews_update_7204() {
  if (db_field_exists('simplenews_subscriber', 'timestamp')) {
    db_drop_field('simplenews_subscriber', 'timestamp');
  }
}