-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove content for frontends (#2054)
- Loading branch information
1 parent
83f7bff
commit 2c07ca0
Showing
10 changed files
with
36 additions
and
71 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
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
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
-- Upgrade 7.17.x to 8.0.0 | ||
-- Be sure to backup the database and read the upgrade notes before executing. | ||
|
||
BEGIN; | ||
|
||
-- Raise database version | ||
UPDATE web.settings SET value = '8.0.0' WHERE name = 'database_version'; | ||
|
||
-- #2054: Remove content for presentation sites | ||
DELETE FROM web.i18n WHERE name IN ( | ||
'contact_for_frontend', | ||
'intro_for_frontend', | ||
'legal_notice_for_frontend', | ||
'site_name_for_frontend'); | ||
|
||
-- #2096: Add presentation site link in backend | ||
INSERT INTO web.settings (name, value) VALUES | ||
('frontend_website_url', ''), | ||
('frontend_resolver_url', ''); | ||
|
||
END; |
This file was deleted.
Oops, something went wrong.
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
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
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
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