mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-04 12:58:50 +00:00
feat(core): Add message of the day
This commit is contained in:
@@ -39,6 +39,7 @@
|
||||
-- OCSSessionsFolderURL -> sogo_sessions_folder
|
||||
-- OCSStoreURL -> sogo_store
|
||||
-- SOGoProfileURL -> sogo_user_profile
|
||||
-- OCSAdminURL -> sogo_admin
|
||||
--
|
||||
-- SOGo needs to know MySQL has full Unicode coverage;
|
||||
-- the following needs to be put in sogo.conf:
|
||||
@@ -158,6 +159,12 @@ CREATE TABLE sogo_store (
|
||||
PRIMARY KEY (c_folder_id,c_name)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
|
||||
|
||||
CREATE TABLE sogo_admin (
|
||||
c_key varchar(255) NOT NULL DEFAULT '',
|
||||
c_content mediumtext NOT NULL,
|
||||
PRIMARY KEY (c_key)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
|
||||
|
||||
CREATE TABLE sogo_user_profile (
|
||||
c_uid varchar(255) NOT NULL,
|
||||
c_defaults longtext,
|
||||
|
||||
Reference in New Issue
Block a user