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:
 +
 +
  BugId int(11) NOT NULL auto_increment,
 +
  Title varchar(128) default NULL,
 +
  Name varchar(80) default NULL,
 +
  Email varchar(80) default NULL,
 +
  AddDAte date default NULL,
 +
  FixDate date default NULL,
 +
  Fixer varchar(80) default NULL,
 +
  FixVersion varchar(30) default NULL,
 +
  Category tinyint(4) default NULL,
 +
  Descr text,
 +
  Prog text,
 +
  `Status` enum('Unfixed','Fixed','Unreproducable','Not a bug') default 'Unfixed',
 +
  BugVersion varchar(8) default NULL,
 +
  bugtype tinyint(4) default NULL,
 +
  `comment` text,
 +
  os varchar(10) default NULL,
 +
  PRIMARY KEY  (BugId)
 +
 +
They must be mapped to appropriate mantis fields.

Revision as of 15:37, 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:

 BugId int(11) NOT NULL auto_increment,
 Title varchar(128) default NULL,
 Name varchar(80) default NULL,
 Email varchar(80) default NULL,
 AddDAte date default NULL,
 FixDate date default NULL,
 Fixer varchar(80) default NULL,
 FixVersion varchar(30) default NULL,
 Category tinyint(4) default NULL,
 Descr text,
 Prog text,
 `Status` enum('Unfixed','Fixed','Unreproducable','Not a bug') default 'Unfixed',
 BugVersion varchar(8) default NULL,
 bugtype tinyint(4) default NULL,
 `comment` text,
 os varchar(10) default NULL,
 PRIMARY KEY  (BugId)

They must be mapped to appropriate mantis fields.