Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
D
drupal
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Custom Issue Tracker
Custom Issue Tracker
Labels
Merge Requests
300
Merge Requests
300
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
project
drupal
Commits
8851b57a
Commit
8851b57a
authored
Jan 25, 2009
by
webchick
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#227486
follow-up by catch: Move update 7010 to 6048 so that the 6.x and 7.x updates stay in sync.
parent
5951daf8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
6 deletions
+14
-6
modules/system/system.install
modules/system/system.install
+14
-6
No files found.
modules/system/system.install
View file @
8851b57a
...
...
@@ -2687,6 +2687,18 @@ function system_update_6047() {
return
$ret
;
}
/**
* Increase the size of the 'load_functions' and 'to_arg_functions' fields in
* table 'menu_router'.
*/
function
system_update_6048
()
{
$ret
=
array
();
db_change_field
(
$ret
,
'menu_router'
,
'load_functions'
,
'load_functions'
,
array
(
'type'
=>
'text'
,
'not null'
=>
TRUE
));
db_change_field
(
$ret
,
'menu_router'
,
'to_arg_functions'
,
'to_arg_functions'
,
array
(
'type'
=>
'text'
,
'not null'
=>
TRUE
));
return
$ret
;
}
/**
* @} End of "defgroup updates-5.x-to-6.x"
* The next series of updates should start at 7000.
...
...
@@ -3028,14 +3040,10 @@ function system_update_7009() {
}
/**
*
Increase the size of the 'load_functions' and 'to_arg_functions' fields in table 'menu_router'
.
*
Moved to system_update_6048()
.
*/
function
system_update_7010
()
{
$ret
=
array
();
db_change_field
(
$ret
,
'menu_router'
,
'load_functions'
,
'load_functions'
,
array
(
'type'
=>
'text'
,
'not null'
=>
TRUE
));
db_change_field
(
$ret
,
'menu_router'
,
'to_arg_functions'
,
'to_arg_functions'
,
array
(
'type'
=>
'text'
,
'not null'
=>
TRUE
));
return
$ret
;
return
array
();
}
/**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment