mirror of
https://github.com/documize/community.git
synced 2025-07-19 05:09:42 +02:00
Update schema for new pinned documents
This commit is contained in:
parent
e014f5b5c1
commit
813f270a9d
3 changed files with 13 additions and 0 deletions
4
core/database/scripts/mysql/db_00033.sql
Normal file
4
core/database/scripts/mysql/db_00033.sql
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
/* Community Edition */
|
||||||
|
|
||||||
|
-- Allow for pinned documents per space.
|
||||||
|
ALTER TABLE dmz_doc ADD COLUMN `c_seq` INT NOT NULL DEFAULT 99999 AFTER `c_versionorder`;
|
5
core/database/scripts/postgresql/db_00009.sql
Normal file
5
core/database/scripts/postgresql/db_00009.sql
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
/* Community Edition */
|
||||||
|
|
||||||
|
-- Allow for pinned documents per space.
|
||||||
|
ALTER TABLE dmz_doc ADD COLUMN c_seq INT NOT NULL DEFAULT '99999';
|
||||||
|
|
4
core/database/scripts/sqlserver/db_00006.sql
Normal file
4
core/database/scripts/sqlserver/db_00006.sql
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
/* Community edition */
|
||||||
|
|
||||||
|
-- Allow for pinned documents per space.
|
||||||
|
ALTER TABLE dmz_doc ADD c_seq INT NOT NULL DEFAULT '99999';
|
Loading…
Add table
Add a link
Reference in a new issue