1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

feat(PostgreSQL): trigger functions support

This commit is contained in:
2021-07-03 11:29:14 +02:00
parent faa07a077c
commit 75bbd5f66e
17 changed files with 747 additions and 6 deletions

View File

@ -14,7 +14,15 @@ export default class {
return ipcRenderer.invoke('alter-function', params);
}
static alterTriggerFunction (params) {
return ipcRenderer.invoke('alter-trigger-function', params);
}
static createFunction (params) {
return ipcRenderer.invoke('create-function', params);
}
static createTriggerFunction (params) {
return ipcRenderer.invoke('create-trigger-function', params);
}
}