feat: add triggers to ui

This commit is contained in:
Nybkox
2024-12-17 10:08:23 +01:00
parent d32af771dc
commit 9e941dfce2
5 changed files with 26 additions and 36 deletions

View File

@@ -166,6 +166,13 @@ export function getSupportedScriptTemplates(objectTypeField: string): { label: s
scriptTemplate: 'CALL OBJECT',
},
];
case 'triggers':
return [
{
label: 'CREATE TRIGGER',
scriptTemplate: 'CREATE OBJECT',
},
];
}
return [];