Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
9dc7f86d
Commit
9dc7f86d
authored
Jul 28, 2007
by
Dries Buytaert
Browse files
- Patch
#147761
by bjaspan: correct length for variables column.
parent
1c55ed7d
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/dblog/dblog.schema
View file @
9dc7f86d
...
...
@@ -7,8 +7,8 @@ function dblog_schema() {
'wid'
=>
array
(
'type'
=>
'serial'
,
'not null'
=>
TRUE
),
'uid'
=>
array
(
'type'
=>
'int'
,
'not null'
=>
TRUE
,
'default'
=>
0
),
'type'
=>
array
(
'type'
=>
'varchar'
,
'length'
=>
16
,
'not null'
=>
TRUE
,
'default'
=>
''
),
'message'
=>
array
(
'type'
=>
'text'
,
'not null'
=>
TRUE
,
'size'
=>
'
medium
'
),
'variables'
=>
array
(
'type'
=>
'text'
,
'not null'
=>
TRUE
,
'size'
=>
'
medium
'
),
'message'
=>
array
(
'type'
=>
'text'
,
'not null'
=>
TRUE
,
'size'
=>
'
big
'
),
'variables'
=>
array
(
'type'
=>
'text'
,
'not null'
=>
TRUE
,
'size'
=>
'
big
'
),
'severity'
=>
array
(
'type'
=>
'int'
,
'unsigned'
=>
TRUE
,
'not null'
=>
TRUE
,
'default'
=>
0
,
'size'
=>
'tiny'
),
'link'
=>
array
(
'type'
=>
'varchar'
,
'length'
=>
255
,
'not null'
=>
TRUE
,
'default'
=>
''
),
'location'
=>
array
(
'type'
=>
'text'
,
'not null'
=>
TRUE
),
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment