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
4fdd6b8c
Commit
4fdd6b8c
authored
Jun 17, 2001
by
tara%tequilarista.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
applying handy patch to refix version table to be 64 instead of 16--partial fix of bug 9352
parent
ac03b19a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
checksetup.pl
checksetup.pl
+5
-1
No files found.
checksetup.pl
View file @
4fdd6b8c
...
...
@@ -709,7 +709,7 @@ $table{bugs} =
product varchar(64) not null,
rep_platform enum($my_platforms),
reporter mediumint not null,
version varchar(
16
) not null,
version varchar(
64
) not null,
component varchar(50) not null,
resolution enum("", "FIXED", "INVALID", "WONTFIX", "LATER", "REMIND", "DUPLICATE", "WORKSFORME", "MOVED") not null,
target_milestone varchar(20) not null default "---",
...
...
@@ -2184,6 +2184,10 @@ if (-d 'shadow') {
DropField
(
"profiles"
,
"emailnotification"
);
DropField
(
"profiles"
,
"newemailtech"
);
# 2001-06-15 kiko@async.com.br - Change bug:version size to avoid
# truncates re http://bugzilla.mozilla.org/show_bug.cgi?id=9352
ChangeFieldType
(
'bugs'
,
'version'
,
'varchar(64) 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