server icon indicating copy to clipboard operation
server copied to clipboard

fix: Use shortestName instead of sequenceName for Postgres seqence migration

Open jbmolle opened this issue 2 years ago • 0 comments

  • Resolves: #36789

Summary

Sequence migration fails on Postgres 15 because the sequenceName contains Postgres schema name which is not public. Access to the public schema has been removed in Postgres 15. If a schema with the name of the user exists, it is going to be used per default. The sequenceName contains the schema name and it is better to use the shortestName.

Checklist

jbmolle avatar Feb 21 '23 08:02 jbmolle