mirror of
https://github.com/documize/community.git
synced 2025-07-22 06:39:43 +02:00
parent
ee10e6db3b
commit
ca91cd8e49
4 changed files with 30 additions and 18 deletions
|
@ -227,6 +227,8 @@ CREATE TABLE IF NOT EXISTS `search` (
|
|||
DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_bin
|
||||
ENGINE = MyISAM;
|
||||
|
||||
-- FULLTEXT search requires MyISAM and NOT InnoDB
|
||||
|
||||
DROP TABLE IF EXISTS `revision`;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `revision` (
|
||||
|
@ -258,7 +260,8 @@ CREATE TABLE IF NOT EXISTS `config` (
|
|||
`key` CHAR(255) NOT NULL,
|
||||
`config` JSON,
|
||||
UNIQUE INDEX `idx_config_area` (`key` ASC))
|
||||
DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_bin;
|
||||
DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_bin
|
||||
ENGINE = InnoDB;
|
||||
|
||||
INSERT INTO `config` VALUES ('SMTP','{\"userid\": \"\",\"password\": \"\",\"host\": \"\",\"port\": \"\",\"sender\": \"\"}');
|
||||
INSERT INTO `config` VALUES ('FILEPLUGINS',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue