fix(Postgres Node): RMC do not mark collumn as required if identity_generation is BY DEFAULT (#13752)

Co-authored-by: Dana <152518854+dana-gill@users.noreply.github.com>
This commit is contained in:
Michael Kret
2025-03-13 07:35:50 +02:00
committed by GitHub
parent ec8a719efa
commit b5632545c5
7 changed files with 149 additions and 9 deletions

View File

@@ -11,7 +11,7 @@ export class Postgres extends VersionedNodeType {
name: 'postgres',
icon: 'file:postgres.svg',
group: ['input'],
defaultVersion: 2.5,
defaultVersion: 2.6,
description: 'Get, add and update data in Postgres',
parameterPane: 'wide',
};
@@ -24,6 +24,7 @@ export class Postgres extends VersionedNodeType {
2.3: new PostgresV2(baseDescription),
2.4: new PostgresV2(baseDescription),
2.5: new PostgresV2(baseDescription),
2.6: new PostgresV2(baseDescription),
};
super(nodeVersions, baseDescription);