Skip to content

Commit

Permalink
Add missing table
Browse files Browse the repository at this point in the history
(Logical change 1.276)
  • Loading branch information
jpm committed Sep 10, 2004
1 parent 092e681 commit 63621ef
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion eventum/setup/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -908,4 +908,14 @@ CREATE TABLE %TABLE_PREFIX%reminder_triggered_action (
rta_iss_id int(11) unsigned not null,
rta_rma_id int(11) unsigned not null,
PRIMARY KEY (rta_iss_id)
);
);

DROP TABLE IF EXISTS %TABLE_PREFIX%issue_quarantine;
CREATE TABLE %TABLE_PREFIX%issue_quarantine (
iqu_iss_id int(11) unsigned auto_increment,
iqu_expiration datetime NULL,
iqu_status tinyint(1),
PRIMARY KEY(iqu_iss_id),
INDEX(iqu_expiration)
);

0 comments on commit 63621ef

Please sign in to comment.