diff --git a/plugins/dbgate-plugin-mysql/src/frontend/drivers.js b/plugins/dbgate-plugin-mysql/src/frontend/drivers.js index 7be9aaf52..a595e89d3 100644 --- a/plugins/dbgate-plugin-mysql/src/frontend/drivers.js +++ b/plugins/dbgate-plugin-mysql/src/frontend/drivers.js @@ -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 = {