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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ivan Ivlev
bugzilla
Commits
903acdf9
Commit
903acdf9
authored
Mar 23, 2000
by
terry%mozilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Quick hack to fix the fact that new bugs have target_milestone of ""
when it really oughta be "---".
parent
6b2eec91
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
checksetup.pl
checksetup.pl
+12
-2
No files found.
checksetup.pl
View file @
903acdf9
...
...
@@ -560,7 +560,7 @@ $table{bugs} =
version varchar(16) not null,
component varchar(50) not null,
resolution enum("", "FIXED", "INVALID", "WONTFIX", "LATER", "REMIND", "DUPLICATE", "WORKSFORME") not null,
target_milestone varchar(20) not null,
target_milestone varchar(20) not null
default "---"
,
qa_contact mediumint not null,
status_whiteboard mediumtext not null,
votes mediumint not null,
...
...
@@ -753,7 +753,7 @@ $table{keyworddefs} =
$table
{
milestones
}
=
'value varchar(
19
0) not null,
'value varchar(
2
0) not null,
product varchar(64) not null,
sortkey smallint not null,
unique (product, value)'
;
...
...
@@ -1537,6 +1537,16 @@ if (!($sth->fetchrow_arrayref()->[0])) {
}
}
# 2000-03-22 Changed the default value for target_milestone to be "---"
# (which is still not quite correct, but much better than what it was
# doing), and made the size of the value field in the milestones table match
# the size of the target_milestone field in the bugs table.
ChangeFieldType
(
'bugs'
,
'target_milestone'
,
'varchar(20) not null default "---"'
);
ChangeFieldType
(
'milestones'
,
'value'
,
'varchar(20) not null'
);
#
# 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