mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
8 lines
245 B
MySQL
8 lines
245 B
MySQL
|
CREATE TABLE phabricator_herald.herald_ruleapplied (
|
||
|
ruleID int unsigned not null,
|
||
|
phid varchar(64) binary not null,
|
||
|
PRIMARY KEY(ruleID, phid)
|
||
|
) ENGINE=InnoDB;
|
||
|
|
||
|
ALTER TABLE phabricator_herald.herald_rule add repetitionPolicy int unsigned;
|