mirror of
https://github.com/documize/community.git
synced 2025-07-18 20:59:43 +02:00
Closes #339 All new documents will be assigned default categories. Documents created from templates that already have categories take precedence.
7 lines
344 B
SQL
7 lines
344 B
SQL
/* Community Edition */
|
|
|
|
-- Increase column sizes to support rich text data entry
|
|
ALTER TABLE dmz_org ALTER COLUMN c_message TYPE VARCHAR(2000);
|
|
ALTER TABLE dmz_space ALTER COLUMN c_desc TYPE VARCHAR(2000);
|
|
ALTER TABLE dmz_category ALTER COLUMN c_name TYPE VARCHAR(200);
|
|
ALTER TABLE dmz_category ADD COLUMN c_default bool NOT NULL DEFAULT '0';
|