Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
1280c324
Commit
1280c324
authored
Apr 21, 2009
by
Dries
Browse files
- Patch
#423948
by mfb: updated documentation, update functions should include schema descriptions.
parent
a4d3da9e
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/system/system.api.php
View file @
1280c324
...
...
@@ -1602,7 +1602,7 @@ function hook_install() {
function
hook_update_N
(
&
$sandbox
=
NULL
)
{
// For most updates, the following is sufficient.
$ret
=
array
();
db_add_field
(
$ret
,
'mytable1'
,
'newcol'
,
array
(
'type'
=>
'int'
,
'not null'
=>
TRUE
));
db_add_field
(
$ret
,
'mytable1'
,
'newcol'
,
array
(
'type'
=>
'int'
,
'not null'
=>
TRUE
,
'description'
=>
'My new integer column.'
));
return
$ret
;
// However, for more complex operations that may take a long time,
...
...
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