diff --git a/install/sqls/00038-blacklist.sql b/install/sqls/00038-blacklist.sql new file mode 100644 index 00000000..b728239b --- /dev/null +++ b/install/sqls/00038-blacklist.sql @@ -0,0 +1,7 @@ +CREATE TABLE `blacklists` ( + `index` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, + `author` BIGINT UNSIGNED NOT NULL, + `target` BIGINT UNSIGNED NOT NULL, + `created` DATETIME NOT NULL, + PRIMARY KEY (`index`) +) ENGINE = InnoDB;