You are here

function simplenews_update_8206 in Simplenews 8.2

Same name and namespace in other branches
  1. 3.x simplenews.install \simplenews_update_8206()

Remove simplenews_mail_spool error field.

File

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

Code

function simplenews_update_8206() {
  $schema = Database::getConnection()
    ->schema();
  $schema
    ->dropField('simplenews_mail_spool', 'error');
}