Add Schema to Postgres-Update #996

This commit is contained in:
Jan Oberhauser
2020-09-29 21:57:22 +02:00
parent 3350723bf3
commit 6f576b3da9
2 changed files with 17 additions and 1 deletions

View File

@@ -136,6 +136,19 @@ export class Postgres implements INodeType {
// ----------------------------------
// update
// ----------------------------------
{
displayName: 'Schema',
name: 'schema',
type: 'string',
displayOptions: {
show: {
operation: ['update'],
},
},
default: 'public',
required: true,
description: 'Name of the schema the table belongs to',
},
{
displayName: 'Table',
name: 'table',