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

feat: edit database collation

This commit is contained in:
2020-10-03 12:11:42 +02:00
parent 4288a1fd33
commit 54717e1f6a
7 changed files with 235 additions and 17 deletions

View File

@ -6,6 +6,14 @@ export default class {
return ipcRenderer.invoke('create-database', params);
}
static updateDatabase (params) {
return ipcRenderer.invoke('update-database', params);
}
static getDatabaseCollation (params) {
return ipcRenderer.invoke('get-database-collation', params);
}
static deleteDatabase (params) {
return ipcRenderer.invoke('delete-database', params);
}