不要怂,就是干,撸起袖子干!

Commit 1fa63824 by Sascha Depold

ignore the sqlite_sequence table when querying all tables

1 parent dd8bb8b4
Showing with 1 additions and 1 deletions
......@@ -61,7 +61,7 @@ module.exports = (function() {
},
showTablesQuery: function() {
return "SELECT name FROM sqlite_master WHERE type='table';"
return "SELECT name FROM sqlite_master WHERE type='table' and name!='sqlite_sequence';"
},
insertQuery: function(tableName, attrValueHash) {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!