You are here

function notify_update_8200 in Notify 2.0.x

Drop the '{notify.teasers}' field

File

./notify.install, line 13
Install, update and uninstall functions for the notify module.

Code

function notify_update_8200(&$sandbox) {
  $schema = Database::getConnection()
    ->schema();
  $schema
    ->dropField('notify', 'teasers');
}