Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
d11ebe02
Commit
d11ebe02
authored
Aug 18, 2005
by
mkanat%kerio.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 296054: [PostgreSQL] Cannot add a new query for event/whining
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=justdave
parent
d8000a59
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
Schema.pm
Bugzilla/DB/Schema.pm
+2
-1
checksetup.pl
checksetup.pl
+6
-0
No files found.
Bugzilla/DB/Schema.pm
View file @
d11ebe02
...
...
@@ -915,7 +915,8 @@ use constant ABSTRACT_SCHEMA => {
DEFAULT
=>
'0'
},
onemailperbug
=>
{
TYPE
=>
'BOOLEAN'
,
NOTNULL
=>
1
,
DEFAULT
=>
'FALSE'
},
title
=>
{
TYPE
=>
'varchar(128)'
,
NOTNULL
=>
1
},
title
=>
{
TYPE
=>
'varchar(128)'
,
NOTNULL
=>
1
,
DEFAULT
=>
"''"
},
],
INDEXES
=>
[
whine_queries_eventid_idx
=>
[
'eventid'
],
...
...
checksetup.pl
View file @
d11ebe02
...
...
@@ -4011,6 +4011,12 @@ if (Param('defaultopsys') eq 'other') {
.
" uses 'Other' (capital O).\n"
;
}
# Add a DEFAULT to whine_queries stuff so that editwhines.cgi
# works on PostgreSQL.
$dbh
->
bz_alter_column
(
'whine_queries'
,
'title'
,
{
TYPE
=>
'varchar(128)'
,
NOTNULL
=>
1
,
DEFAULT
=>
"''"
});
# If you had to change the --TABLE-- definition in any way, then add your
# differential change code *** A B O V E *** this comment.
#
...
...
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