Skip to content

Commit

Permalink
Fix asset table sequence next value for PostgreSQL after upmerge from…
Browse files Browse the repository at this point in the history
… 4.0-dev (#36507)
  • Loading branch information
richard67 authored Dec 31, 2021
1 parent 6dc01f5 commit a407e4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion installation/sql/postgresql/base.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down

0 comments on commit a407e4a

Please sign in to comment.