Skip to content
Snippets Groups Projects
Commit c04c1ef1 authored by yashodha's avatar yashodha
Browse files

(#3926) Need to increase data size for 'url' column on 'civicrm_website' table

parent 5d9296aa
Branches
Tags
No related merge requests found
......@@ -159,8 +159,8 @@ class CRM_Core_DAO_Website extends CRM_Core_DAO {
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Website'),
'description' => ts('Website'),
'maxlength' => 128,
'size' => 30,
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'import' => TRUE,
'where' => 'civicrm_website.url',
'headerPattern' => '/Website/i',
......
......@@ -44,3 +44,6 @@ UPDATE civicrm_state_province SET is_active = 0 WHERE country_id = @indianCountr
UPDATE civicrm_preferences_date SET description = '{ts escape="sql"}Date for relationships. activities. contributions: receive, receipt, cancel. membership: join, start, renew. case: start, end.{/ts}' WHERE civicrm_preferences_date.name = 'activityDate';
UPDATE civicrm_preferences_date SET description = '{ts escape="sql"}Used in search forms.{/ts}' WHERE civicrm_preferences_date.name = 'searchDate';
-- dev/core#3926 Need to increase data size for 'url' column on 'civicrm_website' table
ALTER TABLE civicrm_website CHANGE url url VARCHAR( 255 );
\ No newline at end of file
......@@ -44,10 +44,10 @@
<name>url</name>
<title>Website</title>
<type>varchar</type>
<length>128</length>
<length>255</length>
<html>
<type>Text</type>
<size>30</size>
<size>45</size>
</html>
<import>true</import>
<headerPattern>/Website/i</headerPattern>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment