Skip to content
Snippets Groups Projects
Commit 50d42431 authored by totten's avatar totten
Browse files

CRM-13913 - civicrm_word_replacement.is_active - Default to 1

----------------------------------------
* CRM-13913: WordReplacements created via API should default to enabled
  http://issues.civicrm.org/jira/browse/CRM-13913
parent 052f7a99
No related branches found
No related tags found
No related merge requests found
......@@ -57,4 +57,8 @@ ALTER TABLE `civicrm_mapping_field`
-- CRM-13857
ALTER TABLE civicrm_group
ADD COLUMN `modified_id` INT(10) unsigned DEFAULT NULL COMMENT 'FK to contact table, modifier of the group.',
ADD CONSTRAINT `FK_civicrm_group_modified_id` FOREIGN KEY (`modified_id`) REFERENCES `civicrm_contact`(`id`) ON DELETE SET NULL;
\ No newline at end of file
ADD CONSTRAINT `FK_civicrm_group_modified_id` FOREIGN KEY (`modified_id`) REFERENCES `civicrm_contact`(`id`) ON DELETE SET NULL;
-- CRM-13913
ALTER TABLE civicrm_word_replacement
ALTER COLUMN `is_active` SET DEFAULT 1;
......@@ -37,6 +37,7 @@
<name>is_active</name>
<title>Word Replacement is Active</title>
<type>boolean</type>
<default>1</default>
<comment>Is this entry active?</comment>
<add>4.4</add>
</field>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment