We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ada162 commit 6d55a53Copy full SHA for 6d55a53
lib/migration.js
@@ -30,7 +30,7 @@ function mixinMigration(SQLiteDB) {
30
}
31
32
var sql = null;
33
- sql = 'PRAGMA table_info(' + this.table(model) +')';
+ sql = 'PRAGMA table_info(' + this.tableEscaped(model) +')';
34
var params = [];
35
params.status = true;
36
this.executeSQL(sql, params, decoratedCallback);
0 commit comments