Skip to content

Commit befe74d

Browse files
committed
show index information in openapi specs
1 parent d04234e commit befe74d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/discovery.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ function mixinDiscovery(MySQL, mysql) {
195195
${table ? ' AND c.table_name = ' + mysql.escape(table) : ''}
196196
`,
197197
'c.table_name, c.ordinal_position',
198-
{}
198+
{},
199199
);
200200
} else {
201201
sql = paginateSQL(
@@ -236,7 +236,7 @@ function mixinDiscovery(MySQL, mysql) {
236236
${table ? ' AND columns.table_name = ' + mysql.escape(table) : ''}
237237
`,
238238
'columns.table_name, columns.ordinal_position',
239-
{}
239+
{},
240240
);
241241
}
242242
if (options.orderBy) {

0 commit comments

Comments
 (0)