mirror of
https://github.com/documize/community.git
synced 2025-07-19 21:29:42 +02:00
Allow for comments to be related to doc sections. Enable one-level replies to comments. closes #240
5 lines
332 B
SQL
5 lines
332 B
SQL
/* Enterprise edition */
|
|
|
|
-- Feedback feature: support threaded comments and section references
|
|
ALTER TABLE dmz_doc_comment ADD COLUMN `c_replyto` VARCHAR(20) NOT NULL DEFAULT '' COLLATE utf8_bin AFTER `c_docid`;
|
|
ALTER TABLE dmz_doc_comment ADD COLUMN `c_sectionid` VARCHAR(20) NOT NULL DEFAULT '' COLLATE utf8_bin AFTER `c_docid`;
|