mirror of
https://github.com/documize/community.git
synced 2025-07-19 05:09:42 +02:00
Link comments doc sections + threaded replies
Allow for comments to be related to doc sections. Enable one-level replies to comments. closes #240
This commit is contained in:
parent
b1cb0ed155
commit
ef5e4db298
4 changed files with 1178 additions and 1117 deletions
5
core/database/scripts/mysql/db_00030.sql
Normal file
5
core/database/scripts/mysql/db_00030.sql
Normal file
|
@ -0,0 +1,5 @@
|
|||
/* 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`;
|
5
core/database/scripts/postgresql/db_00006.sql
Normal file
5
core/database/scripts/postgresql/db_00006.sql
Normal file
|
@ -0,0 +1,5 @@
|
|||
/* 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 ucs_basic;
|
||||
ALTER TABLE dmz_doc_comment ADD COLUMN c_sectionid VARCHAR(20) NOT NULL DEFAULT '' COLLATE ucs_basic;
|
5
core/database/scripts/sqlserver/db_00003.sql
Normal file
5
core/database/scripts/sqlserver/db_00003.sql
Normal file
|
@ -0,0 +1,5 @@
|
|||
/* Enterprise edition */
|
||||
|
||||
-- Feedback feature: support threaded comments and section references
|
||||
ALTER TABLE dmz_doc_comment ADD c_replyto NVARCHAR(20) COLLATE Latin1_General_CS_AS NOT NULL DEFAULT '';
|
||||
ALTER TABLE dmz_doc_comment ADD c_sectionid NVARCHAR(20) COLLATE Latin1_General_CS_AS NOT NULL DEFAULT '';
|
2280
embed/bindata.go
2280
embed/bindata.go
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue