Skip to content

Commit 6187512

Browse files
committed
Fix duplicate key for PostgreSQL due to wrong sequence next value
1 parent 2a1771b commit 6187512

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

installation/sql/postgresql/extensions.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -790,7 +790,7 @@ INSERT INTO "#__action_logs_extensions" ("id", "extension") VALUES
790790
(18, 'com_checkin'),
791791
(19, 'com_scheduler');
792792

793-
SELECT setval('#__action_logs_extensions_id_seq', 19, false);
793+
SELECT setval('#__action_logs_extensions_id_seq', 20, false);
794794
-- --------------------------------------------------------
795795

796796
--
@@ -833,7 +833,7 @@ INSERT INTO "#__action_log_config" ("id", "type_title", "type_alias", "id_holder
833833
(20, 'task', 'com_scheduler.task', 'id', 'title', '#__scheduler_tasks', 'PLG_ACTIONLOG_JOOMLA');
834834

835835

836-
SELECT setval('#__action_log_config_id_seq', 20, false);
836+
SELECT setval('#__action_log_config_id_seq', 21, false);
837837

838838
--
839839
-- Table structure for table `#__action_logs_users`

0 commit comments

Comments
 (0)