mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
9 lines
329 B
MySQL
9 lines
329 B
MySQL
|
CREATE TABLE phabricator_herald.herald_ruleedit (
|
||
|
id int unsigned not null auto_increment primary key,
|
||
|
ruleID int unsigned not null,
|
||
|
editorPHID varchar(64) BINARY not null,
|
||
|
dateCreated int unsigned not null,
|
||
|
dateModified int unsigned not null,
|
||
|
KEY (ruleID, dateCreated)
|
||
|
) ENGINE=InnoDB;
|