29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-06-25 14:53:01 +00:00

Fix asset table sequence next value for PostgreSQL after upmerge from 4.0-dev (#36507)

This commit is contained in:
Richard Fath 2021-12-31 18:18:05 +01:00 committed by GitHub
parent 6dc01f5c49
commit a407e4abf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -115,7 +115,7 @@ INSERT INTO "#__assets" ("id", "parent_id", "lft", "rgt", "level", "name", "titl
(89, 18, 128, 129, 2, 'com_modules.module.90', 'Login Support', '{}'),
(90, 1, 163, 164, 1, 'com_scheduler', 'com_scheduler', '{}');
SELECT setval('#__assets_id_seq', 90, false);
SELECT setval('#__assets_id_seq', 91, false);
--
-- Table structure for table `#__extensions`