Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CRM-17147 - ensure is_deceased FALSE values are 0, not NULL #7386

Merged
merged 1 commit into from
Dec 4, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CRM/Upgrade/Incremental/sql/4.7.beta2.mysql.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,7 @@ ALTER TABLE civicrm_contact ALTER COLUMN do_not_phone SET DEFAULT 0;
ALTER TABLE civicrm_contact ALTER COLUMN do_not_mail SET DEFAULT 0;
ALTER TABLE civicrm_contact ALTER COLUMN do_not_sms SET DEFAULT 0;
ALTER TABLE civicrm_contact ALTER COLUMN do_not_trade SET DEFAULT 0;

-- CRM-17147 People with empty deceased-flag ('is null') get removed from recipient list of a mailing
UPDATE civicrm_contact SET is_deceased = 0 WHERE is_deceased IS NULL;
ALTER TABLE civicrm_contact ALTER COLUMN is_deceased SET DEFAULT 0;