|
|
|
@ -650,14 +650,14 @@
|
|
|
|
|
<!-- Inflection - Table name --> |
|
|
|
|
<v-select |
|
|
|
|
v-model="db.meta.inflection.tn" |
|
|
|
|
:disabled="edit" |
|
|
|
|
class="caption" |
|
|
|
|
:label=" |
|
|
|
|
$t( |
|
|
|
|
'projects.ext_db.credentials.advanced.inflection.table_name' |
|
|
|
|
) |
|
|
|
|
" |
|
|
|
|
multiple |
|
|
|
|
:items="['camelize']" |
|
|
|
|
:items="['camelize', 'none']" |
|
|
|
|
> |
|
|
|
|
<template #item="{ item }"> |
|
|
|
|
<span class="caption">{{ item }}</span> |
|
|
|
@ -668,14 +668,14 @@
|
|
|
|
|
<!-- Inflection - Column name --> |
|
|
|
|
<v-select |
|
|
|
|
v-model="db.meta.inflection.cn" |
|
|
|
|
:disabled="edit" |
|
|
|
|
class="caption" |
|
|
|
|
:label=" |
|
|
|
|
$t( |
|
|
|
|
'projects.ext_db.credentials.advanced.inflection.column_name' |
|
|
|
|
) |
|
|
|
|
" |
|
|
|
|
multiple |
|
|
|
|
:items="['camelize']" |
|
|
|
|
:items="['camelize', 'none']" |
|
|
|
|
> |
|
|
|
|
<template #item="{ item }"> |
|
|
|
|
<span class="caption">{{ item }}</span> |
|
|
|
@ -1709,8 +1709,8 @@ export default {
|
|
|
|
|
tn: 'nc_evolutions', |
|
|
|
|
dbAlias: 'db', |
|
|
|
|
inflection: { |
|
|
|
|
tn: ['camelize'], |
|
|
|
|
cn: ['camelize'] |
|
|
|
|
tn: 'camelize', |
|
|
|
|
cn: 'camelize' |
|
|
|
|
}, |
|
|
|
|
api: { |
|
|
|
|
type: '' |
|
|
|
@ -1759,8 +1759,8 @@ export default {
|
|
|
|
|
tn: 'nc_evolutions', |
|
|
|
|
dbAlias, |
|
|
|
|
inflection: { |
|
|
|
|
tn: ['camelize'], |
|
|
|
|
cn: ['camelize'] |
|
|
|
|
tn: 'camelize', |
|
|
|
|
cn: 'camelize' |
|
|
|
|
}, |
|
|
|
|
api: { |
|
|
|
|
type: '' |
|
|
|
|