versions and is faster for date/time computations. Modify object creation methods to specify any time fields that were previously updated with timestamp properties.
19 lines
423 B
SQL
19 lines
423 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',
|
|
queued enum('true','false') NOT NULL default 'false',
|
|
key(linkId),
|
|
index(bug_id),
|
|
index(versionId)
|
|
);
|