function regcode_mailer_update_6001 in Registration codes 6
Update from 6.x-1.5 to 6.x-1.6
File
- regcode_mailer/
regcode_mailer.install, line 29 - Install, uninstall and scheme functions for the regcode_mailer module.
Code
function regcode_mailer_update_6001() {
$updates = array();
$updates[] = 'ALTER TABLE regcode_mailer ADD is_sent int(1) UNSIGNED NOT NULL DEFAULT 0 AFTER rid';
return $updates;
}