Remove unused sequences code

This commit is contained in:
Dan Sosedoff
2016-01-12 22:05:32 -06:00
parent fbaa61bbbc
commit 556e7d445a
7 changed files with 2 additions and 39 deletions

View File

@@ -84,7 +84,6 @@ function getTableIndexes(table, cb) { apiCall("get", "/tables/" + table + "/
function getTableConstraints(table, cb) { apiCall("get", "/tables/" + table + "/constraints", {}, cb); }
function getHistory(cb) { apiCall("get", "/history", {}, cb); }
function getBookmarks(cb) { apiCall("get", "/bookmarks", {}, cb); }
function getSequences(cb) { apiCall("get", "/sequences", {}, cb); }
function executeQuery(query, cb) { apiCall("post", "/query", { query: query }, cb); }
function explainQuery(query, cb) { apiCall("post", "/explain", { query: query }, cb); }