Revert "try to fix build"

This reverts commit 8ab814cb8b.
This commit is contained in:
Jan Prochazka 2024-09-12 08:14:46 +02:00
parent 8ab814cb8b
commit 51c8169232

View File

@ -104,23 +104,23 @@ const dialect = {
return [];
},
// getTableFormOptions(intent) {
// return [
// {
// type: 'dropdowntext',
// options: this.getSupportedEngines(),
// label: 'Engine',
// name: 'tableEngine',
// sqlFormatString: '^engine = %s',
// },
// {
// type: 'text',
// label: 'Comment',
// name: 'objectComment',
// sqlFormatString: '^comment = %v',
// },
// ];
// },
getTableFormOptions(intent) {
return [
{
type: 'dropdowntext',
options: this.getSupportedEngines(),
label: 'Engine',
name: 'tableEngine',
sqlFormatString: '^engine = %s',
},
{
type: 'text',
label: 'Comment',
name: 'objectComment',
sqlFormatString: '^comment = %v',
},
];
},
};
const mysqlDialect = {