You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/nodes-base/nodes/Supabase/Supabase.node.ts
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -51,6 +51,24 @@ export class Supabase implements INodeType {
51
51
},
52
52
],
53
53
properties: [
54
+
{
55
+
displayName: 'Use Custom Schema',
56
+
name: 'useCustomSchema',
57
+
type: 'boolean',
58
+
default: false,
59
+
noDataExpression: true,
60
+
description:
61
+
'Whether to use a database schema different from the default "public" schema (requires schema exposure in the <a href="https://supabase.com/docs/guides/api/using-custom-schemas?queryGroups=language&language=curl#exposing-custom-schemas">Supabase API</a>)',
62
+
},
63
+
{
64
+
displayName: 'Schema',
65
+
name: 'schema',
66
+
type: 'string',
67
+
default: 'public',
68
+
description: 'Name of database schema to use for table',
0 commit comments