forked from documize/community
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Show default category indicator to admins
Fixes #339
- Loading branch information
1 parent
f117e91
commit d4edcb8
Showing
2 changed files
with
7 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* Community edition */ | ||
|
||
-- Increase column sizes to support rich text data entry | ||
ALTER TABLE dmz_org ALTER COLUMN c_message TYPE NVARCHAR(2000) NOT NULL DEFAULT ''; | ||
ALTER TABLE dmz_space ALTER COLUMN c_desc TYPE NVARCHAR(2000) NOT NULL DEFAULT ''; | ||
ALTER TABLE dmz_category ALTER COLUMN c_name TYPE NVARCHAR(200) NOT NULL DEFAULT ''; | ||
ALTER TABLE dmz_category ADD COLUMN c_default BIT NOT NULL DEFAULT '0'; | ||
ALTER TABLE dmz_org ALTER COLUMN c_message NVARCHAR(2000); | ||
ALTER TABLE dmz_space ALTER COLUMN c_desc NVARCHAR(2000); | ||
ALTER TABLE dmz_category ALTER COLUMN c_name NVARCHAR(200); | ||
ALTER TABLE dmz_category ADD c_default BIT NOT NULL DEFAULT '0'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters