master 3.0.8
宇天 2019-09-19 15:49:22 +08:00
parent 247c6591fa
commit 1af8c64323
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
# 3.0.7 / 2019-09-19 # 3.0.8 / 2019-09-19
* 修复tableCreate在没有索引时建表失败的bug * 修复tableCreate在没有索引时建表失败的bug
* 更新文档 * 更新文档

View File

@ -279,7 +279,7 @@ const parser = {
} }
sql += primary sql += primary
if (indexes.length) { if (indexes.length) {
sql += indexes.join(', \n') + ')' sql += ',\n' + indexes.join(', \n') + ')'
} else { } else {
sql += '\n)' sql += '\n)'
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "mysqli", "name": "mysqli",
"version": "3.0.7", "version": "3.0.8",
"description": "MySQL tool", "description": "MySQL tool",
"main": "index.js", "main": "index.js",
"dependencies": { "dependencies": {