Skip to content
Snippets Groups Projects
Commit d95f8cfd authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #898536 by Damien Tournoud: clean-up the upgrade path: dblog.

parent b0531076
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -98,37 +98,37 @@ function dblog_schema() { ...@@ -98,37 +98,37 @@ function dblog_schema() {
*/ */
/** /**
* Allow NULL values for links. * Update the {watchdog} table.
*/ */
function dblog_update_7001() { function dblog_update_7001() {
db_change_field('watchdog', 'link', 'link', array('type' => 'varchar', 'length' => 255, 'not null' => FALSE, 'default' => '')); // Allow NULL values for links.
} db_change_field('watchdog', 'link', 'link', array(
'type' => 'varchar',
'length' => 255,
'not null' => FALSE,
'default' => '',
'description' => 'Link to view the result of the event.',
));
/** // Add an index on uid.
* Add index on uid.
*/
function dblog_update_7002() {
db_add_index('watchdog', 'uid', array('uid')); db_add_index('watchdog', 'uid', array('uid'));
}
/** // Allow longer type values.
* Allow longer type values. db_change_field('watchdog', 'type', 'type', array(
*/ 'type' => 'varchar',
function dblog_update_7003() { 'length' => 64,
db_change_field('watchdog', 'type', 'type', array('type' => 'varchar', 'length' => 64, 'not null' => TRUE, 'default' => '')); 'not null' => TRUE,
} 'default' => '',
'description' => 'Type of log message, for example "user" or "page not found."',
));
/** // Convert the variables field (that stores serialized variables) from text to blob.
* Converts fields that store serialized variables from text to blob. db_change_field('watchdog', 'variables', 'variables', array(
*/
function dblog_update_7004() {
$spec = array(
'type' => 'blob', 'type' => 'blob',
'not null' => TRUE, 'not null' => TRUE,
'size' => 'big', 'size' => 'big',
'description' => 'Serialized array of variables that match the message string and that is passed into the t() function.', 'description' => 'Serialized array of variables that match the message string and that is passed into the t() function.',
); ));
db_change_field('watchdog', 'variables', 'variables', $spec);
} }
/** /**
......
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