Support for custom mail manager.

This commit is contained in:
MobiusDev
2019-03-06 15:50:31 +00:00
parent f6c0fd7679
commit 2600c3d395
60 changed files with 1986 additions and 31 deletions

View File

@@ -0,0 +1,7 @@
CREATE TABLE IF NOT EXISTS `custom_mail` (
`date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`receiver` INT UNSIGNED NOT NULL DEFAULT 0,
`subject` TINYTEXT NOT NULL DEFAULT "",
`message` TEXT NOT NULL DEFAULT "",
`items` TEXT NOT NULL DEFAULT "" -- format: itemId1 count1;itemId2 count2;itemId3 count3...
) ENGINE=InnoDB DEFAULT CHARSET=utf8;