-
Notifications
You must be signed in to change notification settings - Fork 203
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
EZP-26397: Upgrade script: marked User.user_account as not searchable
Add upgrade db sql for change in #1800.
- Loading branch information
Showing
2 changed files
with
10 additions
and
0 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,3 +1,8 @@ | ||
SET default_storage_engine=InnoDB; | ||
-- Set storage engine schema version number | ||
UPDATE ezsite_data SET value='6.6.0' WHERE name='ezpublish-version'; | ||
|
||
-- | ||
-- EZP-26397: marked User.user_account as not searchable | ||
-- | ||
UPDATE ezcontentclass_attribute SET is_searchable = 0 WHERE data_type_string = 'ezuser'; |
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,2 +1,7 @@ | ||
-- Set storage engine schema version number | ||
UPDATE ezsite_data SET value='6.6.0' WHERE name='ezpublish-version'; | ||
|
||
-- | ||
-- EZP-26397: marked User.user_account as not searchable | ||
-- | ||
UPDATE ezcontentclass_attribute SET is_searchable = 0 WHERE data_type_string = 'ezuser'; |