1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-19 16:58:48 +02:00
phorge-phorge/resources/sql/patches/103.heraldedithistory.sql

9 lines
330 B
MySQL
Raw Permalink Normal View History

CREATE TABLE {$NAMESPACE}_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;