Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
CiviCRM Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Development
CiviCRM Core
Commits
c04c1ef1
Commit
c04c1ef1
authored
2 years ago
by
yashodha
Browse files
Options
Downloads
Patches
Plain Diff
(
#3926
) Need to increase data size for 'url' column on 'civicrm_website' table
parent
5d9296aa
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CRM/Core/DAO/Website.php
+2
-2
2 additions, 2 deletions
CRM/Core/DAO/Website.php
CRM/Upgrade/Incremental/sql/5.56.alpha1.mysql.tpl
+3
-0
3 additions, 0 deletions
CRM/Upgrade/Incremental/sql/5.56.alpha1.mysql.tpl
xml/schema/Core/Website.xml
+2
-2
2 additions, 2 deletions
xml/schema/Core/Website.xml
with
7 additions
and
4 deletions
CRM/Core/DAO/Website.php
+
2
−
2
View file @
c04c1ef1
...
...
@@ -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'
,
...
...
This diff is collapsed.
Click to expand it.
CRM/Upgrade/Incremental/sql/5.56.alpha1.mysql.tpl
+
3
−
0
View file @
c04c1ef1
...
...
@@ -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
This diff is collapsed.
Click to expand it.
xml/schema/Core/Website.xml
+
2
−
2
View file @
c04c1ef1
...
...
@@ -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>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment