velocious 1.0.34 → 1.0.35

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.
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "velocious": "bin/velocious.js"
4
4
  },
5
5
  "name": "velocious",
6
- "version": "1.0.34",
6
+ "version": "1.0.35",
7
7
  "main": "index.js",
8
8
  "scripts": {
9
9
  "test": "jasmine",
@@ -45,6 +45,6 @@
45
45
  "sql-escape-string": "^1.1.0",
46
46
  "sql.js": "^1.12.0",
47
47
  "strftime": "^0.10.2",
48
- "uuid": "^11.1.0"
48
+ "uuid": "^12.0.0"
49
49
  }
50
50
  }
@@ -14,9 +14,9 @@ export default class VelociousDatabaseQueryAlterTableBase extends QueryBase {
14
14
  const sqls = []
15
15
 
16
16
  for (const column of this.columns) {
17
- let sql = `ALTER TABLE ${this.driver.quoteTable(this.tableName)} ADD `
17
+ let sql = `ALTER TABLE ${this.getOptions().quoteTableName(this.tableName)} ADD `
18
18
 
19
- sql += this.driver.quoteColumn(column.getName())
19
+ sql += this.getOptions().quoteColumnName(column.getName())
20
20
 
21
21
  sqls.push(sql)
22
22
  }