1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-02-17 04:00:48 +01:00

feat(PostgreSQL): tables addition

This commit is contained in:
Fabio Di Stasio 2021-03-28 11:55:15 +02:00
parent 82c25711b6
commit feef5e30ee
4 changed files with 13 additions and 11 deletions

View File

@ -54,7 +54,7 @@
"portable": {
"artifactName": "${productName}-${version}-portable.exe"
},
"appx":{
"appx": {
"displayName": "Antares SQL Client",
"identityName": "62514FabioDiStasio.AntaresSQLClient",
"publisher": "CN=1A2729ED-865C-41D2-9038-39AE2A63AA52",

View File

@ -18,6 +18,7 @@ module.exports = {
functions: false,
schedulers: false,
// Settings
tableAdd: true,
databaseEdit: false,
tableSettings: true,
viewSettings: false,

View File

@ -997,13 +997,10 @@ export class PostgreSQLClient extends AntaresCore {
*/
async createTable (params) {
const {
name,
collation,
comment,
engine
name
} = params;
const sql = `CREATE TABLE \`${name}\` (\`${name}_ID\` INT NULL) COMMENT='${comment}', COLLATE='${collation}', ENGINE=${engine}`;
const sql = `CREATE TABLE ${name} (${name}_id INTEGER NULL)`;
return await this.raw(sql);
}

View File

@ -25,7 +25,7 @@
>
</div>
</div>
<div class="form-group">
<div v-if="workspace.customizations.comment" class="form-group">
<label class="form-label col-4">
{{ $t('word.comment') }}
</label>
@ -37,7 +37,7 @@
>
</div>
</div>
<div class="form-group">
<div v-if="workspace.customizations.collations" class="form-group">
<label class="form-label col-4">
{{ $t('word.collation') }}
</label>
@ -53,7 +53,7 @@
</select>
</div>
</div>
<div class="form-group">
<div v-if="workspace.customizations.engines" class="form-group">
<label class="form-label col-4">
{{ $t('word.engine') }}
</label>
@ -103,10 +103,14 @@ export default {
getDatabaseVariable: 'workspaces/getDatabaseVariable'
}),
defaultCollation () {
return this.getDatabaseVariable(this.selectedWorkspace, 'collation_server').value || '';
if (this.workspace.customizations.collations)
return this.getDatabaseVariable(this.selectedWorkspace, 'collation_server').value || '';
return '';
},
defaultEngine () {
return this.workspace.engines.find(engine => engine.isDefault).name;
if (this.workspace.customizations.engines)
return this.workspace.engines.find(engine => engine.isDefault).name;
return '';
}
},
mounted () {