Skip to content
Snippets Groups Projects
Commit a42839c5 authored by Angie Byron's avatar Angie Byron
Browse files

Issue #1069080 by Marie Wendel, droplet: Fixed...

Issue #1069080 by Marie Wendel, droplet: Fixed node_comment_statistics().last_comment_timestamp() description.
parent a5007585
No related branches found
No related tags found
No related merge requests found
......@@ -370,6 +370,27 @@ function comment_update_7008() {
* @} End of "addtogroup updates-6.x-to-7.x"
*/
/**
* @addtogroup updates-7.x-extra
* @{
*/
/**
* Change the last_comment_timestamp column description.
*/
function comment_update_7009() {
db_change_field('node_comment_statistics', 'last_comment_timestamp', 'last_comment_timestamp', array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
'description' => 'The Unix timestamp of the last comment that was posted within this node, from {comment}.changed.',
));
}
/**
* @} End of "addtogroup updates-7.x-extra"
*/
/**
* Implements hook_schema().
*/
......@@ -506,7 +527,7 @@ function comment_schema() {
'type' => 'int',
'not null' => TRUE,
'default' => 0,
'description' => 'The Unix timestamp of the last comment that was posted within this node, from {comment}.timestamp.',
'description' => 'The Unix timestamp of the last comment that was posted within this node, from {comment}.changed.',
),
'last_comment_name' => array(
'type' => 'varchar',
......
......@@ -2977,3 +2977,13 @@ function system_update_7071() {
* @} End of "defgroup updates-6.x-to-7.x"
* The next series of updates should start at 8000.
*/
/**
* @defgroup updates-7.x-extra Extra system updates for 7.x
* @{
*/
/**
* @} End of "defgroup updates-7.x-extra"
* The next series of updates should start at 8000.
*/
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment