ALTER TABLE `civicrm_word_replacement` CHANGE `match_type` `match_type` VARCHAR( 16 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL DEFAULT 'wildcardMatch';
ALTER TABLE `civicrm_uf_field` CHANGE `visibility` `visibility` VARCHAR( 32 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL DEFAULT 'User and User Admin Only' COMMENT 'In what context(s) is this field visible.';
ALTER TABLE `civicrm_mapping_field` CHANGE `operator` `operator` VARCHAR( 16 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL DEFAULT NULL COMMENT 'SQL WHERE operator for search-builder mapping fields (search criteria).';
+ALTER TABLE `civicrm_job` CHANGE `run_frequency` `run_frequency` VARCHAR( 8 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL DEFAULT 'Daily' COMMENT 'Scheduled job run frequency.';
+ALTER TABLE `civicrm_extension` CHANGE `type` `type` VARCHAR( 8 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL;
+ALTER TABLE `civicrm_custom_group` CHANGE `style` `style` VARCHAR( 8 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL DEFAULT NULL COMMENT 'Visual relationship between this form and its parent.';
+ALTER TABLE `civicrm_custom_field` CHANGE `data_type` `data_type` VARCHAR( 16 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL COMMENT 'Controls location of data storage in extended_data table.';
+ALTER TABLE `civicrm_custom_field` CHANGE `html_type` `html_type` VARCHAR( 32 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL COMMENT 'HTML types plus several built-in extended types.';
+ALTER TABLE `civicrm_action_schedule` CHANGE `start_action_unit` `start_action_unit` VARCHAR( 8 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL DEFAULT NULL COMMENT 'Time units for reminder.';
+ALTER TABLE `civicrm_action_schedule` CHANGE `repetition_frequency_unit` `repetition_frequency_unit` VARCHAR( 8 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL DEFAULT NULL COMMENT 'Time units for repetition of reminder.';
+ALTER TABLE `civicrm_action_schedule` CHANGE `end_frequency_unit` `end_frequency_unit` VARCHAR( 8 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL DEFAULT NULL COMMENT 'Time units till repetition of reminder.';
</field>
<field>
<name>start_action_unit</name>
- <type>enum</type>
- <values>hour,day,week,month,year</values>
+ <type>varchar</type>
+ <length>8</length>
<comment>Time units for reminder.</comment>
<add>3.4</add>
<html>
</field>
<field>
<name>repetition_frequency_unit</name>
- <type>enum</type>
- <values>hour,day,week,month,year</values>
+ <type>varchar</type>
+ <length>8</length>
<comment>Time units for repetition of reminder.</comment>
<add>3.4</add>
<html>
</field>
<field>
<name>end_frequency_unit</name>
- <type>enum</type>
- <values>hour,day,week,month,year</values>
+ <type>varchar</type>
+ <length>8</length>
<comment>Time units till repetition of reminder.</comment>
<add>3.4</add>
<html>
</field>
<field>
<name>data_type</name>
- <type>enum</type>
- <values>String, Int, Float, Money, Memo, Date, Boolean, StateProvince, Country, File, Link, ContactReference</values>
+ <type>varchar</type>
+ <length>16</length>
<required>true</required>
<comment>Controls location of data storage in extended_data table.</comment>
<add>1.1</add>
</field>
<field>
<name>html_type</name>
- <type>enum</type>
- <values>Text, TextArea, Select, Multi-Select, AdvMulti-Select, Radio, CheckBox, Select Date, Select State/Province, Select Country, Multi-Select Country, Multi-Select State/Province, File, Link, RichTextEditor, Autocomplete-Select</values>
+ <type>varchar</type>
+ <length>32</length>
<required>true</required>
<comment>HTML types plus several built-in extended types.</comment>
<add>1.1</add>
<field>
<name>style</name>
- <type>enum</type>
- <values>Tab, Inline</values>
+ <type>varchar</type>
+ <length>8</length>
<comment>Visual relationship between this form and its parent.</comment>
<add>1.1</add>
<html>
<field>
<name>type</name>
<title>Type</title>
- <type>enum</type>
- <values>payment, search, report, module, sms</values>
+ <type>varchar</type>
+ <length>8</length>
<required>true</required>
<comment></comment>
<add>4.2</add>
</foreignKey>
<field>
<name>run_frequency</name>
- <type>enum</type>
- <values>Hourly, Daily, Always</values>
+ <type>varchar</type>
+ <length>8</length>
<default>"Daily"</default>
<comment>Scheduled job run frequency.</comment>
<add>4.1</add>