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
29d09829
Commit
29d09829
authored
Jul 05, 2010
by
Max Kanat-Alexander
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
The new workflow patch forgot to update the default of
products.allows_unconfirmed to TRUE in the database.
https://bugzilla.mozilla.org/show_bug.cgi?id=486292
parent
9cae3ba3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
DB.pm
Bugzilla/Install/DB.pm
+5
-0
No files found.
Bugzilla/Install/DB.pm
View file @
29d09829
...
...
@@ -625,6 +625,11 @@ sub update_table_definitions {
$dbh
->
bz_alter_column
(
'products'
,
'description'
,
{
TYPE
=>
'MEDIUMTEXT'
,
NOTNULL
=>
1
},
''
);
# Change the default of allows_unconfirmed to TRUE as part
# of the new workflow.
$dbh
->
bz_alter_column
(
'products'
,
'allows_unconfirmed'
,
{
TYPE
=>
'BOOLEAN'
,
NOTNULL
=>
1
,
DEFAULT
=>
'TRUE'
});
################################################################
# New --TABLE-- changes should go *** A B O V E *** this point #
################################################################
...
...
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