mirror of
https://github.com/documize/community.git
synced 2025-07-24 15:49:44 +02:00
PDF section type build prep
Closes #207 -- view PDF's with new PDF section type.
This commit is contained in:
parent
b5cd378302
commit
728789195c
9 changed files with 844 additions and 789 deletions
4
core/database/scripts/mysql/db_00029.sql
Normal file
4
core/database/scripts/mysql/db_00029.sql
Normal file
|
@ -0,0 +1,4 @@
|
|||
/* Community Edition */
|
||||
|
||||
-- Support per section attachments
|
||||
ALTER TABLE dmz_doc_attachment ADD COLUMN `c_sectionid` VARCHAR(20) NOT NULL DEFAULT '' COLLATE utf8_bin AFTER `c_docid`;
|
|
@ -2,5 +2,3 @@
|
|||
|
||||
-- Support per section attachments
|
||||
ALTER TABLE dmz_doc_attachment ADD COLUMN c_sectionid VARCHAR(20) NOT NULL DEFAULT '' COLLATE ucs_basic;
|
||||
|
||||
-- Deprecations
|
||||
|
|
4
core/database/scripts/sqlserver/db_00002.sql
Normal file
4
core/database/scripts/sqlserver/db_00002.sql
Normal file
|
@ -0,0 +1,4 @@
|
|||
/* Community Edition */
|
||||
|
||||
-- Support per section attachments
|
||||
ALTER TABLE dmz_doc_attachment ADD c_sectionid NVARCHAR(20) COLLATE Latin1_General_CS_AS NOT NULL DEFAULT '';
|
Loading…
Add table
Add a link
Reference in a new issue