@axiosleo/orm-mysql 0.1.1 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/builder.js +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axiosleo/orm-mysql",
3
- "version": "0.1.1",
3
+ "version": "0.2.0",
4
4
  "description": "MySQL ORM tool",
5
5
  "keywords": [
6
6
  "mysql",
package/src/builder.js CHANGED
@@ -136,6 +136,7 @@ class Builder {
136
136
  this.values = this.values.concat(builder.values);
137
137
  return builder.sql;
138
138
  }
139
+ this.values.push(val);
139
140
  return null;
140
141
  }
141
142