This repository has been archived on 2025-05-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
appdb/tables/buglinks.sql
2009-10-09 00:08:02 +00:00

19 lines
431 B
SQL

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,
submitterId int(11) NOT NULL default '0',
state enum('accepted','queued') NOT NULL default 'accepted',
key(linkId),
index(bug_id),
index(versionId)
);