Skip to content
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
UPDATE `#__assets` SET `title` = 'PUBLISH' WHERE `title`= 'Publish';
UPDATE `#__assets` SET `title` = 'UNPUBLISH' WHERE `title`= 'Unpublish';
UPDATE `#__assets` SET `title` = 'TRASH' WHERE `title`= 'Trash';
UPDATE `#__assets` SET `title` = 'ARCHIVE' WHERE `title`= 'Archive';
UPDATE `#__assets` SET `title` = 'FEATURE' WHERE `title`= 'Feature';
UPDATE `#__assets` SET `title` = 'UNFEATURE' WHERE `title`= 'Unfeature';
UPDATE `#__assets` SET `title` = 'PUBLISH_AND_FEATURE' WHERE `title`= 'Publish & Feature';
Comment thread
Kostelano marked this conversation as resolved.
Outdated
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
UPDATE "#__assets" SET "title" = 'PUBLISH' WHERE "title"= 'Publish';
UPDATE "#__assets" SET "title" = 'UNPUBLISH' WHERE "title"= 'Unpublish';
UPDATE "#__assets" SET "title" = 'TRASH' WHERE "title"= 'Trash';
UPDATE "#__assets" SET "title" = 'ARCHIVE' WHERE "title"= 'Archive';
UPDATE "#__assets" SET "title" = 'FEATURE' WHERE "title"= 'Feature';
UPDATE "#__assets" SET "title" = 'UNFEATURE' WHERE "title"= 'Unfeature';
UPDATE "#__assets" SET "title" = 'PUBLISH_AND_FEATURE' WHERE "title"= 'Publish & Feature';
14 changes: 7 additions & 7 deletions installation/sql/mysql/base.sql
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,13 @@ INSERT INTO `#__assets` (`id`, `parent_id`, `lft`, `rgt`, `level`, `name`, `titl
(55, 18, 94, 95, 2, 'com_modules.module.87', 'Sample Data', '{}'),
(56, 8, 20, 37, 2, 'com_content.workflow.1', 'COM_WORKFLOW_BASIC_WORKFLOW', '{}'),
(57, 56, 21, 22, 3, 'com_content.stage.1', 'COM_WORKFLOW_BASIC_STAGE', '{}'),
(58, 56, 23, 24, 3, 'com_content.transition.1', 'Unpublish', '{}'),
(59, 56, 25, 26, 3, 'com_content.transition.2', 'Publish', '{}'),
(60, 56, 27, 28, 3, 'com_content.transition.3', 'Trash', '{}'),
(61, 56, 29, 30, 3, 'com_content.transition.4', 'Archive', '{}'),
(62, 56, 31, 32, 3, 'com_content.transition.5', 'Feature', '{}'),
(63, 56, 33, 34, 3, 'com_content.transition.6', 'Unfeature', '{}'),
(64, 56, 35, 36, 3, 'com_content.transition.7', 'Publish & Feature', '{}'),
(58, 56, 23, 24, 3, 'com_content.transition.1', 'UNPUBLISH', '{}'),
(59, 56, 25, 26, 3, 'com_content.transition.2', 'PUBLISH', '{}'),
(60, 56, 27, 28, 3, 'com_content.transition.3', 'TRASH', '{}'),
(61, 56, 29, 30, 3, 'com_content.transition.4', 'ARCHIVE', '{}'),
(62, 56, 31, 32, 3, 'com_content.transition.5', 'FEATURE', '{}'),
(63, 56, 33, 34, 3, 'com_content.transition.6', 'UNFEATURE', '{}'),
(64, 56, 35, 36, 3, 'com_content.transition.7', 'PUBLISH_AND_FEATURE', '{}'),
(65, 1, 143, 144, 1, 'com_privacy', 'com_privacy', '{}'),
(66, 1, 145, 146, 1, 'com_actionlogs', 'com_actionlogs', '{}'),
(67, 18, 76, 77, 2, 'com_modules.module.88', 'Latest Actions', '{}'),
Expand Down
14 changes: 7 additions & 7 deletions installation/sql/postgresql/base.sql
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,13 @@ INSERT INTO "#__assets" ("id", "parent_id", "lft", "rgt", "level", "name", "titl
(55, 18, 94, 95, 2, 'com_modules.module.87', 'Sample Data', '{}'),
(56, 8, 20, 37, 2, 'com_content.workflow.1', 'COM_WORKFLOW_BASIC_WORKFLOW', '{}'),
(57, 56, 21, 22, 3, 'com_content.stage.1', 'COM_WORKFLOW_BASIC_STAGE', '{}'),
(58, 56, 23, 24, 3, 'com_content.transition.1', 'Unpublish', '{}'),
(59, 56, 25, 26, 3, 'com_content.transition.2', 'Publish', '{}'),
(60, 56, 27, 28, 3, 'com_content.transition.3', 'Trash', '{}'),
(61, 56, 29, 30, 3, 'com_content.transition.4', 'Archive', '{}'),
(62, 56, 31, 32, 3, 'com_content.transition.5', 'Feature', '{}'),
(63, 56, 33, 34, 3, 'com_content.transition.6', 'Unfeature', '{}'),
(64, 56, 35, 36, 3, 'com_content.transition.7', 'Publish & Feature', '{}'),
(58, 56, 23, 24, 3, 'com_content.transition.1', 'UNPUBLISH', '{}'),
(59, 56, 25, 26, 3, 'com_content.transition.2', 'PUBLISH', '{}'),
(60, 56, 27, 28, 3, 'com_content.transition.3', 'TRASH', '{}'),
(61, 56, 29, 30, 3, 'com_content.transition.4', 'ARCHIVE', '{}'),
(62, 56, 31, 32, 3, 'com_content.transition.5', 'FEATURE', '{}'),
(63, 56, 33, 34, 3, 'com_content.transition.6', 'UNFEATURE', '{}'),
(64, 56, 35, 36, 3, 'com_content.transition.7', 'PUBLISH_AND_FEATURE', '{}'),
(65, 1, 143, 144, 1, 'com_privacy', 'com_privacy', '{}'),
(66, 1, 145, 146, 1, 'com_actionlogs', 'com_actionlogs', '{}'),
(67, 18, 76, 77, 2, 'com_modules.module.88', 'Latest Actions', '{}'),
Expand Down