Implemented account_muted and feature mutehistory command (#753)

* Implemented account_muted and feature

mutehistory command.

* Added some Syntax.

* Fix sql_rev
This commit is contained in:
Nefertumm
2018-01-15 00:18:23 -03:00
committed by Lee
parent 90ed2548c0
commit 4158d2a0d8
6 changed files with 91 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
INSERT INTO version_db_auth (`sql_rev`) VALUES ('1515646234610593200');
DROP TABLE IF EXISTS `account_muted`;
CREATE TABLE `account_muted` (
`guid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`mutedate` INT(10) UNSIGNED NOT NULL DEFAULT '0',
`mutetime` INT(10) UNSIGNED NOT NULL DEFAULT '0',
`mutedby` VARCHAR(50) NOT NULL,
`mutereason` VARCHAR(255) NOT NULL,
PRIMARY KEY (`guid`, `mutedate`)
)
COMMENT='mute List' ENGINE=InnoDB;