function notifications_update_6012 in Notifications 6.4
Add event type key
File
- ./
notifications.install, line 486
Code
function notifications_update_6012() {
$ret = array();
db_add_field($ret, 'notifications_event', 'typekey', array(
'type' => 'varchar',
'length' => '255',
'not null' => TRUE,
'default' => '',
));
// Reset enabled events
return $ret;
}