This repository has been archived on 2025-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
qemudb/tables/buglinks.sql

19 lines
423 B
MySQL
Raw Normal View History

2005-07-13 01:11:56 +00:00
use apidb;
drop table if exists buglinks;
/*
* link a bug to a version of an application
*/
create table buglinks (
linkId int not null auto_increment,
bug_id int not null,
versionId int not null,
submitTime datetime NOT NULL,
2005-07-13 01:11:56 +00:00
submitterId int(11) NOT NULL default '0',
queued enum('true','false') NOT NULL default 'false',
key(linkId),
index(bug_id),
index(versionId)
);