Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
project
drupal
Commits
1280c324
Commit
1280c324
authored
Apr 21, 2009
by
Dries
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Patch
#423948
by mfb: updated documentation, update functions should include schema descriptions.
parent
a4d3da9e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
modules/system/system.api.php
modules/system/system.api.php
+1
-1
No files found.
modules/system/system.api.php
View file @
1280c324
...
@@ -1602,7 +1602,7 @@ function hook_install() {
...
@@ -1602,7 +1602,7 @@ function hook_install() {
function
hook_update_N
(
&
$sandbox
=
NULL
)
{
function
hook_update_N
(
&
$sandbox
=
NULL
)
{
// For most updates, the following is sufficient.
// For most updates, the following is sufficient.
$ret
=
array
();
$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
;
return
$ret
;
// However, for more complex operations that may take a long time,
// 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