Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Commits
d95f8cfd
Commit
d95f8cfd
authored
14 years ago
by
Dries Buytaert
Browse files
Options
Downloads
Patches
Plain Diff
- Patch
#898536
by Damien Tournoud: clean-up the upgrade path: dblog.
parent
b0531076
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!7452
Issue #1797438. HTML5 validation is preventing form submit and not fully...
,
!789
Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/dblog/dblog.install
+21
-21
21 additions, 21 deletions
modules/dblog/dblog.install
with
21 additions
and
21 deletions
modules/dblog/dblog.install
+
21
−
21
View file @
d95f8cfd
...
@@ -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
);
}
}
/**
/**
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment