Difference between revisions of "Migration to mantis"

From Free Pascal wiki
Jump to navigationJump to search
Line 1: Line 1:
 
The FPC bug repository will be migrated to mantis. This page collects the necessary steps to do so.
 
The FPC bug repository will be migrated to mantis. This page collects the necessary steps to do so.
  
The current FPC bug db has the following fields:
+
The current FPC bug db has the following fields with the given mapping:
  
  BugId int(11) NOT NULL auto_increment,
+
BugId int(11) NOT NULL auto_increment => custom field old bug id
  Title varchar(128) default NULL,
+
Title varchar(128) default NULL => Summary
  Name varchar(80) default NULL,
+
Name varchar(80) => Additional information
  Email varchar(80) default NULL,
+
Email varchar(80) => Additional information
  AddDAte date default NULL,
+
AddDAte date  
  FixDate date default NULL,
+
FixDate date
  Fixer varchar(80) default NULL,
+
Fixer varchar(80) => Fixer account
  FixVersion varchar(30) default NULL,
+
FixVersion varchar(30)  
  Category tinyint(4) default NULL,
+
Category tinyint(4)  
  Descr text,
+
Descr => description
  Prog text,
+
Prog text, => program upload
  `Status` enum('Unfixed','Fixed','Unreproducable','Not a bug') default 'Unfixed',
+
Status` enum('Unfixed','Fixed','Unreproducable','Not a bug') default 'Unfixed',
  BugVersion varchar(8) default NULL,
+
BugVersion varchar(8)
  bugtype tinyint(4) default NULL,
+
bugtype tinyint(4)
  `comment` text,
+
`comment` text,
  os varchar(10) default NULL,
+
os varchar(10)
  PRIMARY KEY  (BugId)
 
 
 
They must be mapped to appropriate mantis fields.
 

Revision as of 16:50, 15 May 2006

The FPC bug repository will be migrated to mantis. This page collects the necessary steps to do so.

The current FPC bug db has the following fields with the given mapping:

BugId int(11) NOT NULL auto_increment => custom field old bug id Title varchar(128) default NULL => Summary Name varchar(80) => Additional information Email varchar(80) => Additional information AddDAte date FixDate date Fixer varchar(80) => Fixer account FixVersion varchar(30) Category tinyint(4) Descr => description Prog text, => program upload Status` enum('Unfixed','Fixed','Unreproducable','Not a bug') default 'Unfixed', BugVersion varchar(8) bugtype tinyint(4) `comment` text, os varchar(10)